Files
backup_box/pyproject.toml

27 lines
594 B
TOML
Raw Permalink Normal View History

2025-11-02 13:58:52 +08:00
[project]
name = "backup_box"
version = "0.0.1"
license = "MIT"
authors = [{ name="Dreagonmon" }]
2025-11-02 17:34:54 +08:00
dependencies = [
2025-11-05 17:36:53 +08:00
"textual~=6.5.0",
"tomli-w~=1.2.0",
"aiofiles~=25.1.0"
2025-11-02 17:34:54 +08:00
]
requires-python = ">=3.11"
[project.scripts]
bkb = "backup_box.app:main"
2025-11-02 13:58:52 +08:00
[build-system]
requires = [
"setuptools >= 40.9.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
# All the following settings are optional:
where = ["."] # ["."] by default
include = ["backup_box"] # ["*"] by default
exclude = ["backup_box/tests*"] # empty by default
namespaces = true # true by default