pterodactyl_backup_downloader/pyproject.toml

28 lines
583 B
TOML
Raw Permalink 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 = [
"pydantic>=2.7.4",
"pydantic-settings>=2.3.3",
"requests>=2.32.3",
2024-06-20 14:04:12 +00:00
"py-dactyl>=2.0.4",
2024-06-20 15:05:10 +00:00
"discordwebhook-py>=1.1.2",
2024-06-20 08:25:16 +00:00
]
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"