[tool.poetry] name = "ttfrog" version = "1.0" description = "ttfrog: automatically generated by poetry-slam." authors = ["greg"] readme = "README.md" packages = [ {include = "*", from = "src"}, ] [tool.poetry.dependencies] python = "^3.11" python-dotenv = "*" rich = "*" typer = "*" flask = "*" flask-sqlalchemy = "^3.1.1" flask-migrate = "^4.1.0" [tool.poetry.group.dev.dependencies] pytest = "*" pytest-cov = "*" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] ttfrog = "ttfrog.cli:main" web = "ttfrog.web:main" ### SLAM [tool.black] line-length = 120 target-version = ['py311'] [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