-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.14 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fastfiz-env"
description = "Gymnasium environments for FastFiz pool simulator."
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"fastfiz @ git+https://github.com/P6-Pool/fastfiz.git",
"gymnasium",
"numpy",
]
[project.optional-dependencies]
dev = [
"fastfiz_renderer @ git+https://github.com/P6-Pool/fastfiz-renderer.git",
"stable-baselines3",
"tqdm",
"rich",
"torch",
"tensorboard",
"optuna",
"matplotlib",
"seaborn",
]
test = ["pytest", "mypy", "ruff"]
all = [
# dev
"fastfiz_renderer @ git+https://github.com/P6-Pool/fastfiz-renderer.git",
"stable-baselines3",
"tqdm",
"rich",
"torch",
"tensorboard",
"optuna",
"matplotlib",
"seaborn",
# test
"pytest",
"mypy",
"ruff",
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:tensorboard",
"ignore::UserWarning:gym",
]
[tool.mypy]
ignore_missing_imports = true
follow_imports = "silent"
show_error_codes = true
[tool.ruff]
line-length = 127