-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
31 lines (30 loc) · 958 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
"""
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/*
"""
from setuptools import find_packages, setup
setup(
name='netdoc',
version='0.9.4',
description='Network Documentation plugin for NetBox',
url='https://github.com/dainok/netdoc',
author='Andrea Dainese',
author_email='[email protected]',
license='GNU v3.0',
install_requires=['python-slugify', 'nornir==3.3.0', 'nornir_utils==0.2.0', 'nornir_netmiko==0.1.2', 'ipaddress', 'macaddress', 'ouilookup'],
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',
},
)