forked from scaleway/python-netboxapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (26 loc) · 691 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (26 loc) · 691 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
30
31
32
33
34
#!/usr/bin/env python3
"""
Netbox API
"""
from os import path
from setuptools import setup
setup(
name="netboxapi",
version="1.1.7",
description="Client API for Netbox",
author="Anthony25 <Anthony Ruhier>",
author_email="anthony.ruhier@gmail.com",
license="Simplified BSD",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
],
keywords=["netbox", "api"],
packages=["netboxapi", ],
install_requires=["requests", ],
setup_requires=["pytest-runner", ],
tests_require=[
"pytest", "pytest-cov", "pytest-mock", "pytest-xdist",
"requests-mock"
],
)