-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
66 lines (59 loc) · 2.14 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os
from setuptools import setup
from setuptools.command.test import test
import snimpy
rtd = os.environ.get("READTHEDOCS", None) == "True"
class SnimpyTestCommand(test):
def run_tests(self, *args, **kwds):
# Ensure we keep a reference to multiprocessing and pysnmp to
# avoid errors at the end of the test
import multiprocessing
import pysnmp
SnimpyTestCommand.multiprocessing = multiprocessing
SnimpyTestCommand.pysnmp = pysnmp
return test.run_tests(self, *args, **kwds)
if __name__ == "__main__":
readme = open("README.rst").read()
history = open("HISTORY.rst").read().replace(".. :changelog:", "")
setup(
name="snimpy",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
"Topic :: Utilities",
"Topic :: System :: Monitoring",
],
url="https://github.com/vincentbernat/snimpy",
description=snimpy.__doc__,
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
author=snimpy.__author__,
author_email=snimpy.__email__,
packages=["snimpy"],
entry_points={
"console_scripts": [
"snimpy = snimpy.main:interact",
],
},
data_files=[("share/man/man1", ["man/snimpy.1"])],
zip_safe=False,
cffi_modules=(not rtd and ["snimpy/smi_build.py:ffi"] or []),
install_requires=[
"cffi >= 1.0.0",
"pysnmp-lextudio >= 4, < 6",
"pyasn1 <= 0.6.0",
'pyasyncore; python_version >= "3.12"',
"setuptools",
],
setup_requires=["cffi >= 1.0.0", "vcversioner"],
cmdclass={"test": SnimpyTestCommand},
pbr=False,
vcversioner={
"version_module_paths": ["snimpy/_version.py"],
},
)