-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1 KB
/
pyproject.toml
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
[tool.poetry]
name = "app"
version = "0.1.0"
description = "AI over SMS"
authors = ["dgrah50 <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "3.12.3"
fastapi = "^0.110.1"
uvicorn = "^0.29.0"
twilio = "^9.0.4"
langchain = "^0.1.16"
aiohttp = "^3.9.5"
sqlmodel = "^0.0.16"
langchain-openai = "^0.1.3"
python-dotenv = "^1.0.1"
python-multipart = "^0.0.9"
cacheing = "^0.1.1"
googlemaps = "^4.10.0"
tortoise-orm = "^0.20.0"
aerich = "^0.7.2"
asyncpg = "^0.29.0"
[tool.poetry.scripts]
start = "app.main:start"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.7"
mypy = "^1.9.0"
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
strict_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
[tool.ruff]
line-length = 100
exclude = ["build/"]
lint.extend-select = ["I"]
[tool.aerich]
tortoise_orm = "app.main.TORTOISE_ORM"
location = "./migrations"
src_folder = "./."
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"