Rearrange for packaging

This commit is contained in:
Neill Cox 2023-09-22 16:15:20 +10:00
parent eb1fbf7eb4
commit cafecb4d01
10 changed files with 79 additions and 34 deletions

28
pyproject.toml Normal file
View file

@ -0,0 +1,28 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tripleo_aio_helpers"
version = "0.0.1"
authors = [
{ name="Neill Cox", email="neill.cox@ingenious.com.au" },
]
description = "Tools to help with building a tripleo/rhosp aio"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = ""
"Bug Tracker" = ""
[project.scripts]
create_aio_vm = "tripleo_aio_helpers.create_aio_vm:main"
os_migrate_setup = "tripleo_aio_helpers.os_migrate_setup:main"
os_migrate_teardown = "tripleo_aio_helpers.os_migrate_teardown:main"
prepare_deployment = "tripleo_aio_helpers.prepare_deployment:main"