[tool.poetry] name = "tabletop-frog" version = "0.1.0" description = "" authors = ["evilchili "] readme = "README.md" packages = [ {include = "*", from = "src"}, ] [tool.poetry.dependencies] python = "^3.10" python-dotenv = "^0.21.0" typer = "^0.9.0" rich = "^13.7.0" 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" unicode-slugify = "^0.1.5" nanoid = "^2.0.0" nanoid-dictionary = "^2.4.0" wtforms-alchemy = "^0.18.0" sqlalchemy-serializer = "^1.4.1" [tool.poetry.group.dev.dependencies] pytest = "^8.1.1" pytest-cov = "^5.0.0" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] ttfrog = "ttfrog.cli:app" ### 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