-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 903 Bytes
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "natodi-backend"
version = "0.1.0"
description = ""
authors = ["Oleksandr Korienev"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
asyncpg = "^0.28.0"
furl = "^2.1.3"
fastapi = "^0.104.0"
sqlalchemy = "^2.0.22"
uvicorn = "^0.23.2"
pydantic-settings = "^2.0.3"
aioboto3 = "^12.0.0"
alembic = "^1.12.1"
typer = "^0.9.0"
pyyaml = "^6.0.1"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-multipart = "^0.0.6"
httpx = "^0.25.1"
ruff = "^0.1.9"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-asyncio = "^0.21.1"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = [
"B008",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"