[tool.poetry] name = "floorball_stats" version = "0.1.0" description = "" authors = ["Simon Milvert "] [tool.poetry.dependencies] python = "^3.9" fastapi = "^0.81.0" SQLAlchemy = "^1.4.40" uvicorn = "^0.18.2" passlib = {extras = ["bcrypt"], version = "^1.7.4"} python-jose = {extras = ["cryptography"], version = "^3.3.0"} pydantic = {extras = ["email"], version = "^1.10.0"} python-multipart = "^0.0.5" emails = "^0.6" sqlmodel = "^0.0.8" loguru = "^0.6.0" [tool.poetry.dev-dependencies] pytest = "^7.1.2" black = "^22.6.0" coverage = {extras = ["toml"], version = "^6.4.4"} pytest-cov = "^3.0.0" mypy = "^0.971" flake8 = "^5.0.4" pylint = "^2.15.0" tox = "^3.25.1" isort = "^5.10.1" [tool.black] line-length = 79 target-version = [ "py39",] [tool.poetry.scripts] web = "app.main:" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"