-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
33 lines (26 loc) · 946 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def readme():
with open('README.rst') as f:
return f.read()
setup(name='python-netbox',
version='0.0.24',
description='Python NetBox Client',
long_description=readme(),
python_requires='>=3',
author='Thomas van der Jagt',
author_email='[email protected]',
url='https://github.com/jagter/python-netbox',
download_url='https://github.com/jagter/python-netbox/releases/tag/0.0.24.tar.gz',
packages=find_packages(),
install_requires=['ipaddress', 'requests'],
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
],
)