-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1022 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
34
from setuptools import setup, find_packages
# with open('README.md', 'r') as file:
# long_description = file.read()
# with open("requirements.txt", "r") as f:
# INSTALL_REQUIRES = f.read().splitlines()
setup(
name="nornir_snmp",
version="0.5.0",
description="SNMP transport plugin for Nornir",
url="https://github.com/jschilders/nornir_snmp",
packages=find_packages(),
author="Jos Schilders",
author_email="[email protected]",
license="BSD 2-clause",
keywords=["snmp", "nornir"],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
],
# long_description=long_description,
# long_description_content_type='text/markdown',
# install_requires=INSTALL_REQUIRES,
install_requires=[
"pysnmplib",
"nornir",
],
entry_points={
"nornir.plugins.connections": "SNMP = nornir_snmp.plugins.connections:SNMP"
},
)