20 lines
359 B
TOML
20 lines
359 B
TOML
[project]
|
|
name = "web"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Deeman", email = "hendriknote@gmail.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"quart>=0.20.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
web = "web:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.3,<0.9.0"]
|
|
build-backend = "uv_build"
|