-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·38 lines (37 loc) · 1.02 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
from setuptools import setup, find_packages
setup(name='emuvim',
version='0.0.1',
license='Apache 2.0',
description='emuvim is a VIM for the SONATA platform',
url='http://github.com/sonata-emu',
author_email='[email protected]',
package_dir={'': 'src'},
# packages=find_packages('emuvim', exclude=['*.test', '*.test.*', 'test.*', 'test']),
packages=find_packages('src'),
install_requires=[
'pyaml',
'zerorpc',
'tabulate',
'argparse',
'networkx',
'six>=1.9',
'ryu',
'ryu',
'pytest',
'Flask',
'flask_restful',
'docker-py==1.7.1',
'requests',
'prometheus_client',
'paramiko',
'urllib3'
],
zip_safe=False,
entry_points={
'console_scripts': [
'son-emu-cli=emuvim.cli.son_emu_cli:main',
],
},
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)