-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.04 KB
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
[project]
name = "dynamicalgorithmselection2"
version = "0.1.0"
description = "RL-based Dynamic Algorithm Selection using Stable Baselines 3 and Gymnasium"
authors = [{ name = "wniec", email = "niecwladek@gmail.com" }]
requires-python = ">=3.11,<3.12"
dependencies = [
"pypop7>=0.0.82,<0.0.83",
"ioh>=0.3.0",
"stable-baselines3>=2.3.0",
"gymnasium>=0.29.0",
"tqdm>=4.67.1,<5",
"wandb>=0.22.2,<0.23",
"numpy>=1.20.0,<2.0",
"pflacco>=1.0.0",
"pandas>=2.0.3",
"matplotlib>=3.8,<4",
"rich>=15.0.0",
"torch>=2.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["das", "agents"]
[tool.pytest.ini_options]
markers = [
"integration: end-to-end tests that use real IOH/pypop7 (slower)",
]
[dependency-groups]
dev = [
"pre-commit>=4.6.0",
"pytest>=9.0.2",
"ruff>=0.14.5",
]
[project.scripts]
das-train = "train:main"
das-cv = "cv:main"
das-eval = "evaluate:main"
rl-das-train = "train_rl_das:main"
exp-das-train = "train_exp_das:main"