forked from RealVNF/coord-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.09 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
from setuptools import setup, find_packages
requirements = [
'simpy>=4',
'networkx==2.4',
'geopy',
'pyyaml>=5.1',
'numpy<1.19',
'common-utils',
'sklearn',
'pandas',
'tensorflow<2',
'keras==2.2.5',
]
test_requirements = [
'flake8',
'nose2'
]
dependency_links = [
'git+https://github.com/RealVNF/common-utils'
]
setup(
name='coord-sim',
version='1.0.0',
description='Simulate flow-level, inter-node network coordination including scaling and placement of services and '
'scheduling/balancing traffic between them.',
url='https://github.com/RealVNF/coord-sim',
author='Stefan Schneider',
dependency_links=dependency_links,
author_email='stefan.schneider@upb.de',
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=requirements + test_requirements,
tests_require=test_requirements,
zip_safe=False,
entry_points={
'console_scripts': [
'coord-sim=coordsim.main:main',
'lstm-predict=coordsim.traffic_predictor.lstm_predictor:main'
],
},
)