-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.08 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
[project]
name = "backend"
version = "0.1.0"
description = "Reader Study Web API backend"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"alembic>=1.15.2",
"fastapi>=0.115.12",
"psycopg2-binary>=2.9.10",
"pydantic[email]>=2.11.4",
"pydantic-settings>=2.0.0",
"sqlalchemy>=2.0.40",
"uvicorn>=0.34.2",
"fastapi-users[sqlalchemy]>=12.1.0", # Use the extra for sqlalchemy
"fastapi-users-db-sqlalchemy>=5.0.0", # Add this line
"passlib[bcrypt]>=1.7.4",
"python-jose[cryptography]>=3.3.0",
"python-multipart>=0.0.6",
"python-dotenv>=1.0.0",
"httpx>=0.24.1",
"asyncpg>=0.28.0",
"aiosqlite>=0.19.0",
"bcrypt>=4.0.1",
"email-validator>=2.0.0",
]
# Define dev dependencies as project optional dependencies
[project.optional-dependencies]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.23.5",
"httpx>=0.27.0",
]
# Explicitly define packages to fix the "multiple top-level packages" error
[tool.setuptools]
packages = ["app"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"