26 lines
527 B
TOML
26 lines
527 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "l4d2host"
|
|
version = "0.1.0"
|
|
description = "L4D2 host library and CLI"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"typer>=0.12",
|
|
"PyYAML>=6.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
l4d2ctl = "l4d2host.cli:app"
|
|
|
|
[tool.setuptools]
|
|
packages = ["l4d2host", "l4d2host.fs", "l4d2host.templates"]
|
|
|
|
[tool.setuptools.package-dir]
|
|
l4d2host = "."
|
|
|
|
[tool.setuptools.package-data]
|
|
"l4d2host.templates" = ["*.service"]
|