-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 786 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 786 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
[tool.poetry]
name = "fastapi-poetry"
version = "0.1.0"
description = "A FastAPI app to manage bottles"
authors = ["Your Name <your-email@example.com>"]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.100.0" # Use a FastAPI version compatible with Pydantic 2.x
uvicorn = "^0.20.0"
pydantic = "^2.0.0"
pydantic-settings = "^2.0.0"
sqlalchemy = "^2.0.0"
alembic = "^1.14.0"
pytest = "^7.0"
httpx = "^0.28.0"
passlib = "^1.7.4"
python-jose = "^3.3.0"
email-validator = "^2.0.0"
python-multipart = "^0.0.9" # For file uploads
ollama = "^0.4.0" # Ollama Python client for AI bottle analysis
minio = "^7.2.0" # MinIO object storage client
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"