-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 815 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[project]
name = "bibliotheque-api"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"bcrypt==4.0.1",
"fastapi>=0.128.0",
"g>=0.0.9",
"httpx>=0.28.1",
"passlib>=1.7.4",
"psycopg[binary]>=3.3.2",
"pydantic>=2.12.5",
"pytest>=9.0.2",
"python-dotenv>=1.2.1",
"python-jose>=3.5.0",
"python-multipart>=0.0.22",
"requests>=2.32.5",
"sqlalchemy>=2.0.46",
"uvicorn>=0.40.0",
]
[dependency-groups]
dev = [
"ruff>=0.15.1",
]
[tool.ruff]
line-length = 80
target-version = "py311"
exclude = [
".venv",
"__pycache__",
]
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"UP",
]
ignore = [
"E501",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"