forked from sonic-net/sonic-dbsyncd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 908 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
35
36
37
38
39
40
from setuptools import setup, find_packages
dependencies = [
'swsssdk>=1.3.0',
'enum34>=1.1.6',
]
test_deps = [
'mockredispy>=2.9.3',
]
high_performance_deps = [
'swsssdk[high_perf]>=1.1',
]
setup(
name='sonic-d',
install_requires=dependencies,
version='2.0.0',
packages=find_packages('src'),
extras_require={
'testing': test_deps,
'high_perf': high_performance_deps,
},
license='Apache 2.0',
author='SONiC Team',
author_email='[email protected]',
maintainer='Tom Booth',
maintainer_email='[email protected]',
package_dir={
'sonic_syncd': 'src/sonic_syncd',
'lldp_syncd': 'src/lldp_syncd',
},
classifiers=[
'Intended Audience :: Developers',
'Operating System :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
)