-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (37 loc) · 986 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
[tool.poetry]
name = "shovelog-backend"
version = "0.1.0"
description = ""
authors = ["tgoddessana <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = { extras = ["all"], version = "^0.104.1" }
uvicorn = { extras = ["standard"], version = "^0.24.0.post1" }
alembic = "^1.13.0"
greenlet = "^3.0.2"
sqlalchemy = "^2.0.23"
[tool.poetry.group.dev.dependencies]
mypy = "^1.7.1"
[tool.poetry.group.development.dependencies]
ipython = "^8.18.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
[tool.mypy]
strict = true
plugins = ["pydantic.mypy", "sqlalchemy.ext.mypy.plugin"]
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
[tool.ruff.pyupgrade]
keep-runtime-typing = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"