Files
vollerei/pyproject.toml
Nguyễn Thế Hưng ac76df577b fix(common): install archive for split files
It worked before, but not now because I switched to py7zr backend for a while now.
2025-02-26 18:41:01 +07:00

42 lines
813 B
TOML

[tool.poetry]
name = "vollerei"
version = "0.1.0"
description = "An open-source launcher for anime games"
authors = ["tretrauit <tretrauit@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
platformdirs = "^3.5.1"
requests = "^2.31.0"
cleo = "^2.1.0"
packaging = "^23.2"
py7zr = "^0.22.0"
multivolumefile = "^0.2.3"
[tool.poetry.group.cli]
optional = true
[tool.poetry.group.cli.dependencies]
tqdm = "^4.65.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
pre-commit = "^3.3.3"
[tool.poetry.group.docs.dependencies]
mkdocstrings-python = "^1.12.2"
mkdocs-material = "^9.5.49"
[tool.poetry.scripts]
vollerei = 'vollerei.cli:run'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"