-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "todo-app"
version = "0.1.0"
description = "A hyper-secure and scalable TODO app"
authors = ["Daan Debie <daan@source.ag>"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.75.0"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
SQLAlchemy = {extras = ["asyncio"], version = "^1.4.32"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
asyncpg = "^0.25.0"
greenlet = "^1.1.2"
python-multipart = "^0.0.5"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
isort = "^5.10.1"
pre-commit = "^2.17.0"
flake8 = "^4.0.1"
testcontainers = "^3.4.2"
[tool.isort]
profile = "black"
line_length = 120
known_first_party = ["todoozie", "tests"]
[tool.black]
line-length = 120
preview = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"