-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.01 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as req:
all_reqs = req.read().split("\n")
setuptools.setup(
name="actoolkit",
py_modules=["toolkit"],
packages=["astraSDK", "tkSrc", "tkSrc.templates.jinja"],
include_package_data=True,
use_scm_version=True,
setup_requires=["setuptools_scm"],
install_requires=all_reqs,
author="Michael Haigh",
author_email="[email protected]",
description="Toolkit and SDK for interacting with Astra Control",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NetApp/netapp-astra-toolkits",
python_requires=">=3.8",
entry_points={
"console_scripts": [
"actoolkit=toolkit:main",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)