-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1 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
47
[project]
name = "sc2_datasets"
version = "2.1.0"
description = "Library providing PyTorch and PyTorch Lightning API for pre-processed StarCraft II dataset SC2EGSetDataset and other datasets."
readme = "README.md"
authors = [{"name" = "Andrzej Białecki"}, {"name" = "Andrzej Szczap"}]
license = "GPL-3.0-only"
requires-python = ">=3.11"
dependencies = [
"lightning>=2.6.1",
"pandas>=3.0.1",
"requests>=2.32.5",
"tqdm>=4.67.3",
]
[dependency-groups]
dev = [
"commitizen>=4.13.9",
"furo>=2025.12.19",
"myst-nb>=1.4.0",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.15.6",
"sphinx-autoapi>=3.8.0",
]
[tool.commitizen]
version = "2.1.0"
version_files = ["pyproject.toml:version"]
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["I"]
[tool.pytest.ini_options]
markers = [
"minor: marks tests as minor (deselect with '-m \"not minor\"')",
"major",
]
[build-system]
requires = ["uv_build>=0.9.5,<0.11.0"]
build-backend = "uv_build"