-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
39 lines (37 loc) · 985 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
from setuptools import setup, find_packages
requirements = [
'coord-sim==2.2.1',
'tensorflow==1.14',
'click',
'stable-baselines==2.10',
'cloudpickle==1.2.0',
'numpy>=1.16.4,<=1.19.3',
'gym[atari]==0.15.7',
'mpi4py==3.0.3',
'tqdm',
'networkx==2.4',
'protobuf<=3.20.3'
]
test_requirements = [
'flake8',
'nose2'
]
setup(
name='spr-rl',
version='1.0.2',
description='Distributed Online Service Coordination Using Deep Reinforcement Learning',
url='https://github.com/RealVNF/distributed-drl-coordination',
author='Haydar Qarawlus, Stefan Schneider',
author_email='[email protected]',
package_dir={'': 'src'},
packages=find_packages('src'),
python_requires='>=3.6, <3.8',
install_requires=requirements + test_requirements,
tests_require=test_requirements,
zip_safe=False,
entry_points={
'console_scripts': [
'spr-rl=spr_rl.agent.main:main',
],
},
)