forked from AIMarketContest/simulation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.53 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "ai_market_contest"
version = "0.1.0"
description = "AI contests for deep reinforcement learning bots in online markets"
license = "MIT"
authors = ["Matteo Bongiovanni <[email protected]>",
"Ibraheem Wazir <[email protected]>",
"Jack Benham <[email protected]>",
"Pranav Maganti <[email protected]>",
"Michael Clasby <[email protected]>",
"Yash Yeola <[email protected]>"]
readme = "README.md"
repository = "https://github.com/AIMarketContest/simulation"
documentation = "https://github.com/AIMarketContest/simulation/tree/main/docs"
keywords = ["ai", "market", "contest", "simulation", "rl"]
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
Sphinx = "^4.2.0"
numpy = "^1.21.3"
matplotlib = "^3.4.3"
pandas = "^1.3.4"
tqdm = "^4.62.3"
ray = "1.13.0"
tensorflow = "^2.7.0"
tensorboard = "^2.7.0"
typer = {extras = ["all"], version = "^0.4.0"}
questionary = "^1.10.0"
dill = "^0.3.4"
torch = "^1.10.1"
tensorflow-probability = "^0.15.0"
tabulate = "^0.9.0"
scikit-image = "^0.22.0"
gym = "0.22.0"
lz4 = "4.3.2"
silence-tensorflow = "1.2.1"
[tool.poetry.dev-dependencies]
black = "^21.9b0"
codespell = "^2.1.0"
flake8 = "^4.0.1"
isort = "^5.9.3"
mypy = "^0.910"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
pyupgrade = "^2.29.0"
pre-commit = "^2.15.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.poetry.scripts]
aic = "ai_market_contest.cli.aic:run"