[tool.poetry] name = "barker" version = "0.1.0" description = "Point of Sale for a restaurant" authors = ["tanshu "] [tool.poetry.dependencies] python = "^3.8" uvicorn = "^0.12.1" fastapi = "^0.61.1" python-jose = {extras = ["cryptography"], version = "^3.2.0"} passlib = {extras = ["bcrypt"], version = "^1.7.3"} psycopg2-binary = "^2.8.6" SQLAlchemy = "^1.3.19" python-multipart = "^0.0.5" PyJWT = "^1.7.1" alembic = "^1.4.3" itsdangerous = "^1.1.0" python-dotenv = "^0.14.0" pydantic = {extras = ["dotenv"], version = "^1.6.1"} starlette = "^0.13.6" [tool.poetry.dev-dependencies] flake8 = "^3.8.4" black = "^20.8b1" isort = "^5.6.2" [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 = 88 include = '\.pyi?$' exclude = ''' /( \.eggs | \.git | \.hg | \.mypy_cache | \.tox | \.venv | _build | buck-out | build | dist | tests/.*/setup.py )/ '''