Files
textual-serve/pyproject.toml
Will McGugan 9ec4d60615 typing fixes
2024-06-19 15:18:28 +01:00

30 lines
592 B
TOML

[project]
name = "textual-serve"
version = "1.0.1"
description = "Turn your Textual TUIs in to web applications"
authors = [
{ name = "Will McGugan", email = "will@textualize.io" }
]
dependencies = [
"textual>=0.66.0",
"aiohttp>=3.9.5",
"aiohttp-jinja2>=1.6",
"jinja2>=3.1.4",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/textual_serve"]