left4me/l4d2host/pyproject.toml

23 lines
436 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"]
[tool.setuptools.package-dir]
l4d2host = "."