-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1006 Bytes
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1006 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
[tool.poetry]
name = "backend"
version = "0.1.0"
description = ""
authors = ["Pau Duran <pduran.stratify@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.115.8"
uvicorn = "^0.34.0"
sqlalchemy = "^2.0.38"
asyncpg = "^0.30.0"
pydantic = "^2.10.6"
pydantic-settings = "^2.7.1"
alembic = "^1.14.1"
psycopg2-binary = "^2.9.10"
openai = "^1.65.2"
# passlib = {extras = ["bcrypt"], version = "^1.7.4"}
# pyjwt = "^2.10.1"
python-multipart = "^0.0.20"
freezegun = "^1.5.1"
requests = "2.32.3"
tiktoken = "0.9.0"
pinecone = {extras = ["asyncio"], version = "6.0.2"}
stripe = "12.1.0"
firebase-admin = "6.7.0"
boto3 = "1.40.25"
anthropic = "0.57.1"
[tool.poetry.group.dev.dependencies]
tox = "^4.24.1"
flake8 = "^7.1.1"
black = "^25.1.0"
pytest = "^8.3.4"
mypy = "^1.15.0"
pytest-asyncio = "^0.25.3"
httpx = "^0.28.1"
flake8-quotes = "^3.4.0"
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"