tabletop-frog/pyproject.toml

35 lines
663 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"
python-dotenv = "^0.21.0"
2024-01-31 22:39:54 -08:00
typer = "^0.9.0"
2024-01-28 00:46:19 -08:00
rich = "^13.7.0"
2024-01-31 22:39:54 -08:00
sqlalchemy = "^2.0.25"
pyramid = "^2.0.2"
pyramid-tm = "^2.5"
pyramid-jinja2 = "^2.10"
pyramid-sqlalchemy = "^1.6"
wtforms-sqlalchemy = "^0.4.1"
transaction = "^4.0"
2024-02-02 15:40:45 -08:00
unicode-slugify = "^0.1.5"
nanoid = "^2.0.0"
nanoid-dictionary = "^2.4.0"
2024-01-28 00:46:19 -08:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
ttfrog = "ttfrog.cli:app"