[tool.poetry] name = "barker" version = "11.3.3" description = "Point of Sale for a restaurant" authors = ["tanshu "] [tool.poetry.dependencies] python = "^3.11" uvicorn = {extras = ["standard"], version = "^0.20.0"} fastapi = "^0.92.0" python-jose = {extras = ["cryptography"], version = "^3.3.0"} passlib = {extras = ["bcrypt"], version = "^1.7.4"} psycopg2-binary = "^2.9.5" SQLAlchemy = "^2.0.4" python-multipart = "^0.0.5" PyJWT = "^2.6.0" alembic = "^1.9.4" itsdangerous = "^2.1.2" python-dotenv = "^0.21.1" pydantic = {extras = ["dotenv"], version = "^1.10.5"} starlette = "^0.25.0" arq = "^0.25.0" aiohttp = "^3.8.4" cryptography = "^39.0.1" gunicorn = "^20.1.0" [tool.poetry.dev-dependencies] flake8 = "^6.0.0" black = "^23.1.0" isort = {extras = ["toml"], version = "^5.12.0"} pre-commit = "^3.0.4" mypy = "^1.0.1" types-python-jose = "^3.3.4.4" [tool.poetry.group.dev.dependencies] tomli = "^2.0.1" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.isort] profile = "black" atomic = true include_trailing_comma = true lines_after_imports = 2 lines_between_types = 1 use_parentheses = true src_paths = ["poetry", "tests"] skip_glob = ["*/setup.py"] filter_files = true known_first_party = "poetry" [tool.black] line-length = 120 include = '\.pyi?$' exclude = ''' /( \.eggs | \.git | \.hg | \.mypy_cache | \.tox | \.venv | _build | buck-out | build | dist | tests/.*/setup.py )/ '''