forked from dcgym/iroko
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (29 loc) · 1.26 KB
/
pyproject.toml
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
[tool.poetry]
name = "dc_gym"
version = "0.0.1"
description = "Iroko is an open source project that is focused on providing openAI compliant gyms. The aim is to develop machine learning algorithms that address data center problems and to fairly evaluate solutions again traditional techniques."
license = "Apache-2.0"
authors = [
"Fabian Ruffy",
"Michael Przystupa"
]
readme = 'README.md'
repository = "https://github.com/dc_gym/iroko"
homepage = "https://github.com/dc_gym/iroko"
keywords = ['tcp', 'congestion control', 'reinforcement learning', 'rl', 'data center']
[tool.poetry.dependencies]
python = "~2.7 || ^3.2" # Compatible python versions
toml = "^0.9"
# DCgym dependencies
numpy = { version = "*", python = "~2.7 || ^3.2"}
gym = { version = "*", python = "~2.7 || ^3.2"}
seaborn = { version = "*", python = "~2.7 || ^3.2"}
matplotlib = { version = "*", python = "~2.7 || ^3.2"}
gevent = { version = "*", python = "~2.7 || ^3.2"}
tqdm = { version = "*", python = "~2.7 || ^3.2"}
# Ray dependencies
opencv-python = { version = "*", python = "~2.7 || ^3.2"}
tensorflow = { version = "*", python = "~2.7 || ^3.2"}
lz4 = { version = "*", python = "~2.7 || ^3.2"}
psutil = { version = "*", python = "~2.7 || ^3.2"}
setproctitle = { version = "*", python = "~2.7 || ^3.2"}