Initial Commit
This commit is contained in:
commit
05c2e5e81f
17 changed files with 1197 additions and 0 deletions
37
pyproject.toml
Normal file
37
pyproject.toml
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
[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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue