2023-06-13 04:03:47 +07:00
|
|
|
[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"
|
2023-06-17 09:25:14 +07:00
|
|
|
requests = "^2.31.0"
|
2024-01-02 02:31:15 +07:00
|
|
|
cleo = "^2.1.0"
|
2024-02-06 12:04:53 +07:00
|
|
|
packaging = "^23.2"
|
2024-02-06 12:12:42 +07:00
|
|
|
tqdm = { version = "^4.65.0", optional = true }
|
2023-06-13 04:03:47 +07:00
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
|
pytest = "^7.3.1"
|
2023-06-16 19:52:43 +07:00
|
|
|
pre-commit = "^3.3.3"
|
2023-06-13 04:03:47 +07:00
|
|
|
|
2024-02-06 11:48:16 +07:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
|
vollerei = 'vollerei.cli:run'
|
|
|
|
|
|
2023-06-13 04:03:47 +07:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|