mirror of
https://github.com/Textualize/textual-web.git
synced 2025-10-17 02:36:40 +03:00
35 lines
723 B
TOML
35 lines
723 B
TOML
[tool.poetry]
|
|
name = "textual_web"
|
|
version = "0.8.0"
|
|
description = "Serve Textual apps"
|
|
authors = ["Will McGugan <will@textualize.io>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8.1"
|
|
textual = "^0.43.0"
|
|
# textual = { path = "../textual/", develop = true }
|
|
aiohttp = "^3.9.3"
|
|
uvloop = { version = "^0.19.0", markers = "sys_platform != 'win32'" }
|
|
click = "^8.1.3"
|
|
aiohttp-jinja2 = "^1.5.1"
|
|
pydantic = "^2.1.1"
|
|
xdg = "^6.0.0"
|
|
msgpack = "^1.0.5"
|
|
importlib-metadata = ">=4.11.3"
|
|
httpx = ">=0.24.1"
|
|
tomli = "^2.0.1"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
includes = "src"
|
|
|
|
[tool.poetry.scripts]
|
|
textual-web = "textual_web.cli:app"
|