-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
47 lines (41 loc) · 1.63 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
43
44
45
46
47
import re
from glob import glob
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
_src_folder = 'src'
_pkg_name = 'spid_sp_test'
with open(f'src/{_pkg_name}/__init__.py', 'r') as fd:
VERSION = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
setup(
name=_pkg_name,
version=VERSION,
description="SAML2 SPID/CIE Service Provider validation tool that can be run from the command line",
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)',
'Programming Language :: Python :: 3'],
url='https://github.com/italia/spid-sp-test',
author='Giuseppe De Marco',
author_email='giuseppe.demarco@tamdigitale.governo.it',
license='License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)',
scripts=[f'src/{_pkg_name}/bin/{_pkg_name}'],
packages=[f"{_pkg_name}"],
package_dir={f"{_pkg_name}": f"{_src_folder}/{_pkg_name}"},
package_data={f"{_pkg_name}": [i.replace(f'{_src_folder}/{_pkg_name}/', '')
for i in glob(f'{_src_folder}/{_pkg_name}/**',
recursive=True)]
},
install_requires=[
'pysaml2>=6.5.1',
'xmlschema==1.7.1',
'requests>=2.25.1',
'lxml>=4.6.2',
'Jinja2>=2.11.3',
'spid_compliant_certificates>=0.5.3'
# 'sslyze>=4.0.4', # todo
],
)