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 = [
|
2024-03-26 00:53:21 -07:00
|
|
|
{include = "*", from = "src"},
|
2024-01-28 00:46:19 -08:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-06-30 16:09:20 -07:00
|
|
|
python = "^3.11"
|
2024-01-28 00:46:19 -08:00
|
|
|
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-02-04 11:40:30 -08:00
|
|
|
wtforms-alchemy = "^0.18.0"
|
2024-02-16 01:19:25 -08:00
|
|
|
sqlalchemy-serializer = "^1.4.1"
|
2024-01-28 00:46:19 -08:00
|
|
|
|
2024-03-24 16:56:13 -07:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
pytest = "^8.1.1"
|
2024-03-26 00:53:21 -07:00
|
|
|
pytest-cov = "^5.0.0"
|
2024-03-24 16:56:13 -07:00
|
|
|
|
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"
|
2024-03-26 00:53:21 -07:00
|
|
|
|
|
|
|
|
|
|
|
### SLAM
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 120
|
|
|
|
target-version = ['py310']
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
multi_line_output = 3
|
|
|
|
line_length = 120
|
|
|
|
include_trailing_comma = true
|
|
|
|
|
|
|
|
[tool.autoflake]
|
|
|
|
check = false # return error code if changes are needed
|
|
|
|
in-place = true # make changes to files instead of printing diffs
|
|
|
|
recursive = true # drill down directories recursively
|
|
|
|
remove-all-unused-imports = true # remove all unused imports (not just those from the standard library)
|
|
|
|
ignore-init-module-imports = true # exclude __init__.py when removing unused imports
|
|
|
|
remove-duplicate-keys = true # remove all duplicate keys in objects
|
|
|
|
remove-unused-variables = true # remove unused variables
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
log_cli_level = "DEBUG"
|
|
|
|
addopts = "--cov=src --cov-report=term-missing"
|
|
|
|
|
|
|
|
### ENDSLAM
|