-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
33 lines (30 loc) · 930 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
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='mod-snmpbooster',
version="2.0~alpha",
description='SNMP booster module for Shinken',
author='Thibault Cohen',
author_email='[email protected]',
url='https://github.com/savoirfairelinux/mod-booster-snmp',
license='AGPLv3',
install_requires=["redis",
"pysnmp",
"pyasn1",
"configobj",
],
packages=find_packages(),
package_dir={'snmp_booster': 'module'},
include_package_data=True,
# namespace_packages=['shinken.modules.snmp_booster'],
test_suite='nose.collector',
entry_points={
'console_scripts': [
'sbcm = module.tools.sbcm:main',
],
}
)