Files
GOGUpdater/pyproject.toml

32 lines
708 B
TOML
Raw Permalink Normal View History

2026-03-26 06:22:37 +01:00
[project]
name = "gogupdater"
version = "1.0.0"
2026-03-26 06:22:37 +01:00
description = ""
authors = [
{name = "Jan Doubravský",email = "jan.doubravsky@gmail.com"}
]
requires-python = ">=3.14,<3.15"
dependencies = [
"pyside6 (>=6.11.0,<7.0.0)",
"loguru (>=0.7.3,<0.8.0)",
"python-dotenv (>=1.2.2,<2.0.0)",
"requests (>=2.33.0,<3.0.0)",
"tqdm (>=4.67.3,<5.0.0)"
2026-03-26 06:22:37 +01:00
]
[tool.poetry]
package-mode = false
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"ruff (>=0.15.7,<0.16.0)",
"mypy (>=1.19.1,<2.0.0)",
"pytest (>=9.0.2,<10.0.0)",
"pytest-mock (>=3.15.1,<4.0.0)",
"types-requests (>=2.32.4.20260324,<3.0.0.0)"
]