-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
36 lines (31 loc) · 878 Bytes
/
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
[tool.poetry]
name = "sc2_datasets"
version = "1.0.2"
description = "Library providing PyTorch and PyTorch Lightning API for pre-processed StarCraft II dataset SC2EGSetDataset and other datasets."
authors = ["Andrzej Białecki", "Andrzej Szczap"]
license = "GNU General Public License v3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pytorch-lightning = "^2.5.0"
pandas = "^2.1.4"
tqdm = "^4.66.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-cov = "^6.0.0"
myst-nb = "^1.0.0"
sphinx-autoapi = "^3.0.0"
furo = "^2024.8.6"
pre-commit = "^4.1.0"
ruff = "^0.9.10"
commitizen = "^4.4.1"
[tool.ruff]
target-version = "py311"
[tool.pytest.ini_options]
markers = [
"minor: marks tests as minor (deselect with '-m \"not minor\"')",
"major",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"