1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "securetar"
version = "2025.2.1"
license = {text = "Apache-2.0"}
description = "Python module to handle tarfile backups."
readme = "README.md"
authors = [{name = "Pascal Vizeli", email = "pvizeli@syshack.ch"}]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10.0"
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/pvizeli/securetar"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.setuptools.packages.find]
include = ["securetar*"]
|