-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 1.46 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
from setuptools import setup
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='cms-nbi-client',
version='0.1.0',
description='Python Module to interact with the Calix Management System',
long_description=long_description,
long_description_content_type='text/markdown',
author='somenetworking',
author_email='[email protected]',
maintainer='somenetworking',
maintainer_email='[email protected]',
url='https://github.com/somenetworking/CMS-NBI-Client',
keywords=['CMS', 'Calix', 'NETCONF', 'API', 'Networking', 'Automation', 'NBI'],
classifiers=['Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: System :: Networking',
'Intended Audience :: Telecommunications Industry'],
license='GPL v3.0',
package_dir={"cmsnbiclient": 'src/cmsnbiclient',
"cmsnbiclient.E7": "src/cmsnbiclient/E7",
"cmsnbiclient.REST": "src/cmsnbiclient/REST"},
packages=['cmsnbiclient',
'cmsnbiclient.E7',
'cmsnbiclient.REST'],
install_requires=["xmltodict >=0.13.0",
"requests >=2.28.0",
"pydash >=5.1.0"],
python_requires=">=3.7"
)