-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 874 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
from setuptools import setup
package = 'teasysnmp'
version = '0.6'
with open('README.rst') as f:
long_description = f.read()
setup(name=package,
version=version,
description="Extended easysnmp with helpers to work with snmp tables",
long_description=long_description,
license="MIT",
author="The Binary",
author_email="binary4bytes@gmail.com",
url='https://github.com/thebinary/teasysnmp',
packages=["teasysnmp"],
install_requires=[
"easysnmp"
],
keywords=[
"system",
"networking",
"snmp",
"helpers",
"teasysnmp"
],
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Monitoring"
])