-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·34 lines (31 loc) · 942 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
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.5.1'
setup(
name='nsot_sync',
version=VERSION,
description="CLI/Driver-based framework to sync resources to NSoT (IPAM)",
author='Codey Oxley',
author_email='codey.a.oxley+os@gmail.com',
url='https://github.com/coxley/nsot_sync',
keywords=['networking', 'ipam', 'nsot', 'cmdb', 'sync', 'orion',
'solarwinds', 'infoblox', 'ip', 'address'],
classifiers=[],
packages=find_packages(),
include_package_data=True,
install_requires=[
'pynsot==1.0',
'netifaces==0.10.4',
'coloredlogs==5.0',
],
extras_require={
'docs': ['sphinx', 'sphinx-autobuild', 'sphinx-rtd-theme'],
'tests': ['pytest'],
},
tests_require=['pytest'],
setup_requires=['pytest-runner'],
entry_points='''
[console_scripts]
nsot_sync=nsot_sync.cli:main
''',
)