28 lines
No EOL
793 B
TOML
28 lines
No EOL
793 B
TOML
[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.6.8"
|
|
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" |