-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 932 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 932 Bytes
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
from setuptools import setup, find_packages
requirements = [
'click>=7.1.2',
'ray==1.4.0',
'torch==1.12.1',
'cloudpickle==1.2.0',
'numpy==1.19.3',
'gym[atari] == 0.21.0',
'mpi4py==3.0.3',
'tqdm>=4.62.3',
'networkx==2.4'
]
test_requirements = [
# 'flake8',
'nose2'
]
setup(
name='spr-rl',
version='1.0.1',
description='Distributed Online Service Coordination Using Deep Reinforcement Learning',
url='https://github.com/RealVNF/distributed-drl-coordination',
author='Haydar Qarawlus, Stefan Schneider',
author_email='qarawlus@mail.upb.de',
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',
],
},
)