
This turns launch-node into an installable package. This is not meant for distribution, we just encapsulate the installation in a virtualenv on the bastion host. Small updates to documentation and simple testing are added (also remove some spaces to make test_bridge.py consistent). Change-Id: Ibcb4774114d73600753ca155ed277d775964bc79
33 lines
775 B
TOML
33 lines
775 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "opendev_launch"
|
|
version = "1.0.0"
|
|
description = "launch nodes"
|
|
requires-python = ">=3.6"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: Apache2 License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"paramiko>=2.9.1",
|
|
# This is a very specific list which is known to work
|
|
# with RAX storage...
|
|
"python-openstackclient==4.0.2",
|
|
"python-cinderclient==9.1.0",
|
|
"openstacksdk==0.102.0"
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://opendev.org/"
|
|
|
|
[project.scripts]
|
|
launch-node = "opendev_launch:launch_node.main"
|
|
show-dns = "opendev_launch:dns.main"
|
|
|
|
[tool.setuptools.package-data]
|
|
opendev_launch = ["*.sh"]
|