-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
43 lines (39 loc) · 918 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
41
42
43
from setuptools import setup, find_packages
dependencies = [
]
test_deps = [
'pytest',
'mock>=2.0.0',
'mockredispy>=2.9.3',
'swsssdk>=1.3.0'
]
high_performance_deps = [
]
setup(
name='sonic-d',
install_requires=dependencies,
version='2.0.0',
tests_require=test_deps,
packages=find_packages('src'),
extras_require={
'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',
},
setup_requires= [
'pytest-runner',
'wheel',
],
classifiers = [
'Intended Audience :: Developers',
'Operating System :: Linux',
'Programming Language :: Python :: 3.7',
],
)