-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (46 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
49 lines (46 loc) · 1.19 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
[tool.poetry]
name = "solesearch-api"
version = "2.0.0"
description = "API for the solesearch project"
authors = ["Peter Rauscher <peter@peterrauscher.com>"]
readme = "README.md"
packages = [{ include = "solesearch_api", from = "src" }]
[tool.poetry.dependencies]
python = "3.12.8"
sqlmodel = "^0.0.22"
fastapi = { extras = ["uvicorn"], version = "^0.115.0" }
uvicorn = "^0.31.0"
psycopg2-binary = "^2.9.9"
python-dotenv = "^1.0.1"
itsdangerous = "^2.2.0"
requests = "^2.32.3"
fastapi-pagination = "^0.12.31"
celery = "^5.4.0"
redis = "^5.2.0"
logfire = { extras = ["fastapi", "celery", "sqlalchemy"], version = "^3.4.0" }
beautifulsoup4 = "^4.13.3"
boto3 = "^1.37.13"
requests-aws4auth = "^1.3.1"
constructor-io = "^1.8.6"
alembic = "^1.15.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.9.4"
debugpy = "^1.8.13"
watchdog = "^6.0.0"
[tool.ruff.lint]
select = [
"E", # pycodestyle error
"W", # pycodestyle warning
"F", # pyflakes
"A", # flakes8-builtins
"COM", # flakes8-commas
"C4", # flake8-comprehensions
"Q", # flake8-quotes
"SIM", # flake8-simplify
"PTH", # flake8-use-pathlib
"I", # isort
"N", # pep8 naming
"UP", # pyupgrade
"S", # bandit
]
ignore = ["COM812"]