forked from opencomputeproject/SAI-Challenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 739 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
from setuptools import setup
setup(
name="sai-challenger-extensions",
version='0.1',
description='SAI Challenger CLI & basic topologies',
license='Apache 2.0',
author='Andriy Kokhan',
author_email='[email protected]',
url='https://github.com/opencomputeproject/SAI-Challenger',
install_requires=[
'click==8.0',
],
packages=[
'saichallenger.cli',
'saichallenger.topologies',
],
package_dir={
'saichallenger.cli': 'cli',
'saichallenger.topologies': 'topologies',
},
scripts=[
'scripts/redis-cmd-listener.py'
],
entry_points={
'console_scripts': [
'sai = saichallenger.cli.main:cli',
]
},
)