tabletop-frog/pyproject.toml

37 lines
620 B
TOML
Raw Normal View History

2024-01-28 00:46:19 -08:00
[tool.poetry]
name = "tabletop-frog"
version = "0.1.0"
description = ""
authors = ["evilchili <evilchili@gmail.com>"]
readme = "README.md"
packages = [
{ include = 'ttfrog' },
]
[tool.poetry.dependencies]
python = "^3.10"
TurboGears2 = "^2.4.3"
sqlalchemy = "^2.0.25"
tgext-admin = "^0.7.4"
webhelpers2 = "^2.0"
typer = "^0.9.0"
python-dotenv = "^0.21.0"
rich = "^13.7.0"
jinja2 = "^3.1.3"
2024-01-28 14:31:50 -08:00
tw2-forms = "^2.2.6"
mako = "^1.3.0"
2024-01-28 00:46:19 -08:00
#"tg.devtools" = "^2.4.3"
#repoze-who = "^3.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
ttfrog = "ttfrog.cli:app"