-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 863 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
38
39
[tool.poetry]
name = "gsp-rl"
version = "1.4.0"
description = "Stable with config support"
authors = ["jdbloom"]
readme = "README.md"
packages = [{include = "gsp_rl"}]
[tool.poetry.dependencies]
python = "^3.10"
torch = "^2.1.2"
numpy = "^1.26.2"
matplotlib = "^3.8.2"
pandas = "^2.1.4"
SciPy = "^1.11.4"
black = "^23.12.1"
mypy = "^1.8.0"
pylint = "^3.0.3"
zmq = "^0.0.0"
gymnasium = {extras = ["box2d"], version = "^0.29.1"}
tensorboard = "^2.16.2"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
ruff = "^0.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=gsp_rl --cov-report=term-missing --cov-fail-under=65 -m 'not slow'"
markers = [
"slow: convergence tests (deselect with '-m \"not slow\"')",
]