forked from sonic-net/sonic-snmpagent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.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
from setuptools import setup, find_packages
dependencies = [
'psutil>=4.0',
'python_arptable>=0.0.1',
]
test_deps = [
'mockredispy>=2.9.3',
'pytest',
'pytest-cov',
'swsssdk>=2.0.1',
]
high_performance_deps = [
]
setup(
name='asyncsnmp',
install_requires=dependencies,
setup_requires= [
'pytest-runner',
'wheel'
],
tests_require=test_deps,
version='2.1.0',
packages=find_packages('src'),
extras_require={
'high_perf': high_performance_deps,
},
license='Apache 2.0',
author='SONiC Team',
author_email='linuxnetdev@microsoft.com',
maintainer='Tom Booth',
maintainer_email='thomasbo@microsoft.com',
package_dir={'sonic_ax_impl': 'src/sonic_ax_impl',
'ax_interface': 'src/ax_interface'},
package_data={'sonic_ax_impl': ['config/*.json',
'bin/*',
'systemd/*.service']},
classifiers=[
'Intended Audience :: Developers',
'Operating System :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
],
)