-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.76 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('cisco_documentation/VERSION', 'r') as f:
version = f.read()
setuptools.setup(
name="cisco-documentation",
version=version,
author="John Burt",
author_email="[email protected]",
description="Gather information from switches to create documentation in excel.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/alphabet5/cisco_documentation",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
entry_points={'console_scripts': ['cisco-documentation=cisco_documentation.cli:main',
'run-commands=cisco_documentation.cli:run_commands',
'cisco-port-descriptions=cisco_documentation.cli:port_descriptions',
'config-merge=cisco_documentation.cli:config_merge',
'jinja-merge=cisco_documentation.cli:jinja_merge',
'ssh-creds=cisco_documentation.cli:ssh_creds']},
include_package_data=True,
package_data={'cisco_documentation': ['*', 'templates/*'], },
install_requires=['napalm',
'yamlarg',
'keyring',
'ntc_templates',
# 'aiomultiprocess',
'joblib',
'requests',
'openpyxl',
'Jinja2',
'rich',
'paramiko'],
)