Files
backup_box/pyproject.toml
2025-11-02 13:58:52 +08:00

19 lines
458 B
TOML

[project]
name = "backup_box"
version = "0.0.1"
license = "MIT"
authors = [{ name="Dreagonmon" }]
dependencies = []
[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