-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 779 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 779 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
[project]
name = "dynamicalgorithmselection"
version = "0.1.0"
description = ""
authors = [{ name = "wniec", email = "niecwladek@gmail.com" }]
requires-python = ">=3.11"
readme = "README.md"
dependencies = [
"pypop7>=0.0.82,<0.0.83",
"coco-experiment>=2.8.1,<3",
"cocopp>=2.8.0,<3",
"tqdm>=4.67.1,<5",
"wandb>=0.22.2,<0.23",
"wandb-workspaces>=0.1.19,<0.2",
"tenacity>=9.1.2,<10",
"neat-python>=0.92",
"torch>=2.9.0",
"numpy>=1.20.0, <2.0",
"pflacco>=1.0.0",
"ty>=0.0.17",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"py-spy>=0.4.1",
"pytest>=9.0.2",
"ruff>=0.14.5",
]
[project.scripts]
das = "dynamicalgorithmselection.main:main"