-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
78 lines (72 loc) · 2.11 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "raylab"
version = "0.16.1"
description = "Reinforcement learning algorithms in RLlib and PyTorch."
authors = ["Ângelo Gregório Lovatto <angelolovatto@gmail.com>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/angelolovatto/raylab"
keywords = ["reinforcement-learning", "rllib", "deep-learning", "model-based-rl", "pytorch"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English"
]
[tool.poetry.dependencies]
python = "^3.7"
click = "^7.1.2"
ray = {extras = ["rllib", "tune"], version = "<1.7"}
torch = "^1.5.1"
streamlit = ">=0.62,<0.86"
cachetools = {version = "^4.1.0", python = "^3.7"}
# Have to restrict bokeh version due to issue with streamlit
# https://github.com/streamlit/streamlit/issues/2156#issuecomment-815311729
bokeh = "<2.3.4"
dataclasses-json = "^0.5.1"
opencv-python = "^4.2.0"
poetry-version = "^0.1.5"
pytorch-lightning = ">=1.3.8,<1.6.0"
dm-tree = "^0.1.5"
tabulate = "^0.8.7"
opencv-contrib-python = "^4.4.0"
sklearn = "^0.0"
nnrl = "^0.1.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
pylint = "^2.12.2"
watchdog = "^2.1.5"
black = "^21.12b0"
tox = "^3.24.5"
sphinx = "^4.4.0"
pytest = "^6.2.5"
gym-cartpole-swingup = "^0.1.3"
pre-commit = "^2.17.0"
mypy = "^0.910"
coverage = "^6.3"
ipython = "^7.31.1"
pytest-mock = "^3.6.1"
pytest-sugar = "^0.9.4"
auto-changelog = "^0.5.3"
isort = "^5.9.3"
pytest-deadfixtures = "^2.2.1"
[tool.poetry.scripts]
raylab = "raylab.cli:raylab"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:ray:",
"ignore::DeprecationWarning:tree:",
"ignore::DeprecationWarning:tensorflow:",
"ignore::DeprecationWarning:google:",
"ignore::DeprecationWarning:flatbuffers:",
"ignore::DeprecationWarning:wandb:",
"ignore:pandas.util.testing is deprecated:FutureWarning",
"ignore::DeprecationWarning:tensorboard:",
"ignore::DeprecationWarning:pytorch_lightning",
"ignore::FutureWarning:ray.autoscaler"
]