forked from netbox-community/pynetbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 919 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
35
from setuptools import setup
from os.path import join, dirname
with open(join(dirname(__file__), 'pynetbox/VERSION')) as f:
version = f.read().strip()
setup(
name='pynetbox',
version=version,
description='NetBox API client library',
url='https://github.com/digitalocean/pynetbox',
author='Zach Moody',
author_email='[email protected]',
license='Apache2',
packages=[
'pynetbox',
'pynetbox.lib'
],
install_requires=[
'netaddr==0.7.18',
'requests==2.10.0',
'six==1.11.0'
],
zip_safe=False,
keywords=['netbox'],
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)