pterodactyl_backup_downloader/pyproject.toml

27 lines
548 B
TOML
Raw Normal View History

2024-06-20 08:25:16 +00:00
[project]
name = "pterodactyl_backup_downloader"
version = "0.1.0"
description = "Automatic backups downloader from PterodactylCP"
authors = [
{name = "Jan Benicek", email = "jan00@benicek.xyz"},
]
dependencies = [
"pydactyl>=0.5",
"pydantic>=2.7.4",
"pydantic-settings>=2.3.3",
"requests>=2.32.3",
]
requires-python = ">=3.12"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.scripts]
start = "python src/main.py"