forked from dainok/netdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (49 loc) · 1.34 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
"""
NetDoc PYPI setup file.
Install with: python3 setup.py install
Develop with: python3 setup.py develop
Make it available on PIP with:
python3 setup.py sdist
pip3 install twine
twine upload dist/*
"""
__author__ = "Andrea Dainese"
__contact__ = "[email protected]"
__copyright__ = "Copyright 2022, Andrea Dainese"
__license__ = "GPLv3"
__version__ = "0.0.1-dev1"
from setuptools import find_packages, setup
setup(
name="netdoc",
version=__version__,
description="Automatic Network Documentation plugin for NetBox",
url="https://github.com/dainok/netdoc",
author="Andrea Dainese",
author_email="[email protected]",
license="GNU v3.0",
install_requires=[
"ipaddress==1.0.23",
"jsonschema==3.2.0",
"macaddress==2.0.2",
"n2g==0.3.3",
"netmiko==4.1.2",
"nornir==3.3.0",
"nornir_netmiko==0.2.0",
"nornir_utils",
"ouilookup==0.2.4",
"python-slugify",
"pyvmomi==8.0.1.0.1",
"xmltodict==0.13.0",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
],
project_urls={
"Source": "https://github.com/dainok/netdoc",
},
)