This repository was archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (43 loc) · 1.35 KB
/
setup.py
File metadata and controls
executable file
·47 lines (43 loc) · 1.35 KB
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
45
46
47
#!/usr/bin/env python3
import setuptools
from netnir import __version__
setuptools.setup(
version=__version__,
name="netnir",
packages=setuptools.find_packages(),
install_requires=[
"pytest-runner",
"nornir==2.4.0",
"netmiko==2.4.2",
"ncclient>=0.6.7",
"hier_config==v1.6.1",
"keyring>=21.2.1",
"keyrings.alt>=3.4.0",
"ntc-rosetta>=v0.2.0",
"dataclasses<0.7.0,>=0.6.0",
],
tests_require=[
"pytest",
"pytest-cov",
"pytest-black",
"pytest-flake8",
],
python_requires=">=3.6",
scripts=["bin/netnir"],
author="James Williams",
author_email="james.williams@rackspace.com",
description="a modular cli utility built around nornir.",
url="https://github.com/netdevops/netnir",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
],
)