-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (41 loc) · 1.36 KB
/
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
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python3
"""nornir ipfabric inventory plugin"""
import setuptools
__author__ = "Gian Paolo Boarina"
with open("README.md", "r") as f:
README = f.read()
setuptools.setup(
name="nornir_ipfabric",
version="0.1.4",
author=__author__,
author_email="[email protected]",
description="nornir_ipfabric plugin for nornir",
keywords="nornir ipfabric automation",
license="Apache License, Version 2.0",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/routetonull/nornir_ipfabric",
packages=setuptools.find_packages(),
install_requires=[
"nornir>=3.0.0a4,<4.0.0",
"simplejson==3.17.2",
"urllib3==1.25.11",
"requests>=2.24.0",
],
extras_require={},
platforms="any",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: System :: Networking",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
python_requires=">=3.6",
entry_points="""
[nornir.plugins.inventory]
IPFabricInventory=nornir_ipfabric.plugins.inventory:IPFabricInventory""",
)