forked from sancus-tee/reactive-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 953 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as f:
requirements = f.readlines()
setuptools.setup(
name="reactive-tools",
version="0.6.5",
author="Gianluca Scopelliti",
author_email="[email protected]",
description="Deployment tools for the Authentic Execution framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AuthenticExecution/reactive-tools",
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
python_requires='>=3.6',
entry_points={
'console_scripts': ['reactive-tools = reactivetools.cli:main']
},
include_package_data=True
)