initial framework

This commit is contained in:
Will McGugan
2024-06-10 16:39:21 +01:00
parent a0fae34069
commit 0fe15908e9
6 changed files with 140 additions and 0 deletions

28
pyproject.toml Normal file
View File

@@ -0,0 +1,28 @@
[project]
name = "textual-serve"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Will McGugan", email = "willmcgugan@gmail.com" }
]
dependencies = [
"textual>=0.66.0",
"aiohttp>=3.9.5",
"aiohttp-jinja2>=1.6",
]
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"]