37 lines
1 KiB
TOML
37 lines
1 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
authors = [
|
|
{ name = "Neill Cox", email="neill@ace-hosting.com.au"},
|
|
]
|
|
dynamic = ["version"]
|
|
name= "ah-tools"
|
|
dependencies = [
|
|
"requests",
|
|
"cryptography",
|
|
]
|
|
requires-python = ">=3.12"
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Topic :: System :: Systems Administration",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://tools.ace-hosting.com.au"
|
|
Documentation = "https://readthedocs.org"
|
|
Repository = "https://git.evatt.ingenious.com.au/neillc/ah-tools.git"
|
|
Issues = "https://git.evatt.ingenious.com.au/neillc/ah-tools/issues"
|
|
Changelog = "https://git.evatt.ingenious.com.au/neillc/ah-tools/blob/master/CHANGELOG.md"
|
|
|
|
[project.scripts]
|
|
ah-backups-status = "ah_tools:check_backups"
|
|
ah-encrypt = "ah_tools:encrypt_cli"
|
|
ah-decrypt = "ah_tools:decrypt_cli"
|
|
|
|
[tool.hatch.version]
|
|
path = "ah_tools/__init__.py"
|