-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 838 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 838 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
[tool.poetry]
package-mode = false
name = "rl-collectivetransport"
version = "2.0.0"
description = "Collective Transport trained using RL from the GSP-RL library"
authors = ["jdbloom <jdbloom@wpi.edu>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
gsp-rl = {path = "../GSP-RL", develop = true}
[tool.poetry.extras]
hdf5 = ["h5py"]
[tool.poetry.dependencies.h5py]
version = "^3.0"
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["rl_code"]
addopts = "-m 'not slow and not integration'"
markers = [
"slow: convergence tests (deselect with '-m \"not slow\"')",
"integration: full ARGoS integration tests requiring simulator installed",
]