-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.33 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
"""
This module defines how the netapp_ontap library gets built/installed. Build the
package by running "python3 setup.py sdist bdist_wheel"
"""
import os
import setuptools
setuptools.setup(
name=os.getenv("PACKAGE_NAME", "netapp-ontap"),
version="9.14.1.0",
author="NetApp",
author_email="[email protected]",
description="A library for working with ONTAP's REST APIs simply in Python",
long_description="See netapp_ontap.__doc__",
long_description_content_type="text/markdown",
url="https://devnet.netapp.com/restapi.php",
project_urls={
"Documentation": "https://library.netapp.com/ecmdocs/ECMLP2886776/html/index.html",
},
keywords='NetApp ONTAP REST API development',
packages=setuptools.find_packages(),
package_data={
"netapp_ontap": ["py.typed"],
},
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
install_requires=["marshmallow>=3.2.1", "requests>=2.26.0", "requests-toolbelt>=0.9.1", "urllib3>=1.26.7","certifi>=2022.12.7"],
extras_require={"cli": ["recline>=2020.5"]},
python_requires=">=3.6",
include_package_data=True,
entry_points={
"console_scripts": ["ontap-cli = netapp_ontap.__main__:main [cli]"],
},
)