forked from grnet/SATOSA
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (40 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
"""
setup.py
"""
from setuptools import setup, find_packages
setup(
name='SATOSA',
version='7.0.1',
description='Protocol proxy (SAML/OIDC).',
author='DIRG',
author_email='[email protected]',
license='Apache 2.0',
url='https://github.com/SUNET/SATOSA',
packages=find_packages('src/'),
package_dir={'': 'src'},
install_requires=[
"pyop >= 3.0.1",
"pysaml2 >= 5.0.0",
"pycryptodomex",
"requests",
"PyYAML",
"gunicorn",
"Werkzeug",
"click",
"pystache",
"cookies-samesite-compat",
],
extras_require={
"ldap": ["ldap3"]
},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points={
"console_scripts": ["satosa-saml-metadata=satosa.scripts.satosa_saml_metadata:construct_saml_metadata"]
}
)