-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.25 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
from setuptools import setup, find_packages
from eidas_node_trust_config import name as package_name
__author__ = 'Zenon Mousmoulas'
__version__ = '0.4.0'
install_requires = [
'pyyaml',
'jsonschema',
'jsonpointer',
'jinja2',
'requests',
'pyXMLSecurity @ git+https://github.com/zmousm/pyXMLSecurity.git@2d699ea0d18b80b37433b57672c70e81dd5042fc#egg=pyXMLSecurity',
'lxml',
'cryptography'
]
setup(
name=package_name,
version=__version__,
description='eIDAS node trust configuration',
author=__author__,
url='https://github.com/grnet/eidas_node_trust_config',
license='Apache License 2.0',
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: Apache Software License',
'Development Status :: 3 - Alpha',
],
packages=find_packages(),
install_requires=install_requires,
include_package_data=True,
package_data={package_name: ['schemas/*.json', 'schemas/*.xsd']},
entry_points={
'console_scripts': [
f"{package_name} = {package_name}.__main__:main",
],
},
python_requires='>=3.7',
)