forked from netbox-community/pynetbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 823 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 823 Bytes
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
from setuptools import setup, find_packages
setup(
name='pynetbox',
description='NetBox API client library',
url='https://github.com/digitalocean/pynetbox',
author='Zach Moody',
author_email='zmoody@do.co',
license='Apache2',
include_package_data=True,
use_scm_version=True,
setup_requires=['setuptools_scm'],
packages=find_packages(),
install_requires=[
'requests>=2.20.0,<3.0',
'six==1.*',
],
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',
],
)