mirror of
https://github.com/Textualize/textual-serve.git
synced 2025-10-17 02:50:37 +03:00
35 lines
689 B
TOML
35 lines
689 B
TOML
[project]
|
|
name = "textual-serve"
|
|
version = "1.1.1"
|
|
description = "Turn your Textual TUIs in to web applications"
|
|
authors = [
|
|
{ name = "Will McGugan", email = "will@textualize.io" }
|
|
]
|
|
dependencies = [
|
|
"aiohttp>=3.9.5",
|
|
"aiohttp-jinja2>=1.6",
|
|
"jinja2>=3.1.4",
|
|
"rich",
|
|
"textual>=0.66.0",
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">= 3.8"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.rye]
|
|
managed = true
|
|
dev-dependencies = [
|
|
"httpx",
|
|
# required to run the dictionary example
|
|
"textual-dev>=1.5.1",
|
|
]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/textual_serve"]
|