-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1020 Bytes
/
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
[tool.poetry]
name = "tfrlrl"
version = "0.0.0"
description = "Yet another Python RL library"
authors = ["Thomas Furmston <tfurmston@googlemail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tfurmston/tfrlrl"
[tool.poetry.build]
generate-setup-file = false
[tool.poetry.dependencies]
python = "~3.10"
ray = "^1.10.0"
numpy = "^1.24.2"
gymnasium = {version = "^0.27.1", extras = ["atari", "accept-rom-license", "mujoco"] }
dynaconf = "^3.1.12"
[tool.poetry.dev-dependencies]
bumpversion = "^0.6.0"
flake8 = "^3.9.2"
flake8-docstrings = "^1.6.0"
flake8-logging-format = "^0.6.0"
flake8-blind-except = "^0.2.0"
flake8-quotes = "^3.3"
isort = "^5.12.0"
pytest = "^6.2"
pytest-cov = "^2.8"
pytest-mock = "^3.5"
pytest-random-order = "^1.0.4"
pytest-sugar = "^0.9"
tox = "^3.18"
hypothesis = "^6.36.1"
pre-commit = "^3.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
line_length=120
multi_line_output=3
include_trailing_comma=true