-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 894 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
31
32
from setuptools import setup, find_packages
NAME = "intersight"
VERSION = "1.0.11.2024101709"
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"pem>=19.3.0",
"pycryptodome>=3.9.0",
]
setup(
name=NAME,
version=VERSION,
description="The Python SDK for Cisco Intersight",
author="Intersight API support",
author_email="[email protected]",
url="https://intersight.com",
keywords=["Cisco Intersight"],
python_requires=">=3.6",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
license="Apache License 2.0",
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
]
)