-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.18 KB
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
53
54
55
56
[tool.poetry]
name = "{{ cookiecutter.project_slug }}-backend"
version = "0.1.0"
description = ""
authors = []
[tool.poetry.dependencies]
python = "^3.13"
fastapi = "^0.115.11"
uvicorn = "^0.23.2"
pydantic = "^2.10.6"
requests = "^2.31.0"
alembic = "^1.15.1"
psycopg2-binary = "^2.9.10"
asyncpg = "^0.30.0"
SQLAlchemy = "^2.0.39"
gunicorn = "^21.2.0"
fastapi-users = { extras = ["sqlalchemy"], version = "^14.0.1" }
email-validator = "^2.2.0"
pydantic-settings = "^2.8.1"
[tool.poetry.group.dev.dependencies]
black = "^23.10.1"
pytest = "^7.4.3"
ipython = "^8.16.1"
pytest-cov = "^4.1.0"
httpx = "^0.28.1"
pytest-asyncio = "^0.21.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.cruft]
skip = [".env"]
[tool.pytest.ini_options]
asyncio_mode = 'auto'
[tool.ruff]
target-version = "py313"
line-length = 88
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
# "I", # isort - disabled for now
]
ignore = [
"B008", # do not perform function calls in argument defaults
"F401", # imported but unused, too annoyiong for my liking
]