forked from aruba/pyedgeconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (59 loc) · 2.11 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="pyedgeconnect",
use_scm_version={
"local_scheme": "no-local-version",
"write_to": "_version.py",
"write_to_template": 'version = "{version}"\n',
},
setup_requires=["setuptools_scm"],
description="A Python wrapper for Aruba Orchestrator and Edge Connect API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aruba/pyedgeconnect",
author="Zach Camara",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: System :: Networking",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Natural Language :: English",
],
keywords="silverpeak, silverpeak python, aruba edgeconnect, edgeconnect",
packages=find_packages(),
package_dir={"pyedgeconnect": "pyedgeconnect"},
python_requires=">=3.7, <4",
zip_safe=False,
install_requires=["requests"],
extras_require={
"dev": [
"black",
"flake8",
"flake8-rst-docstrings",
"isort",
"sphinx",
"sphinx_rtd_theme",
"pytest",
"tox",
],
},
project_urls={
"Bug Reports": "https://github.com/aruba/pyedgeconnect/issues", # noqa E501
"Source": "https://github.com/aruba/pyedgeconnect/",
},
)