27 lines
638 B
TOML
27 lines
638 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ova2vzdump"
|
|
version = "0.1.0"
|
|
description = "Convert OVA (VirtualBox/VMware) templates into Proxmox vzdump (.vma.zst) backups"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
authors = [{ name = "Stefan Hacker", email = "stefanhacker@gmx.de" }]
|
|
license = { text = "MIT" }
|
|
dependencies = [
|
|
"click>=8.1",
|
|
"flask>=3.0",
|
|
"lxml>=5.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
ova2vzdump = "ova2vzdump.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
ova2vzdump = ["templates/*.html", "static/*"]
|