forked from netbox-community/pynetbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 828 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
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="[email protected]",
license="Apache2",
include_package_data=True,
use_scm_version=True,
setup_requires=["setuptools_scm"],
packages=find_packages(exclude=["tests", "tests.*"]),
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",
],
)