-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
41 lines (39 loc) · 971 Bytes
/
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
[project]
name = "twiga"
version = "0.1.0"
description = "A WhatsApp chatbot for Tanzanian Teachers"
readme = "README.md"
authors = [
{ name = "Victor Oldensand", email = "[email protected]" }
]
requires-python = ">=3.12"
license = { text = "MIT" }
dependencies = [
"alembic>=1.13.3",
"apscheduler>=3.11.0",
"asyncpg>=0.29.0",
"backoff>=2.2.1",
"colorlog>=6.8.2",
"cryptography>=43.0.3",
"fastapi>=0.115.0",
"greenlet>=3.1.1",
"httpx>=0.27.2",
"langchain-openai>=0.2.6",
"openai>=1.51.2",
"pgvector>=0.3.5",
"pre-commit>=4.0.1",
"psycopg2-binary>=2.9.10",
"pydantic-settings>=2.5.2",
"python-dateutil>=2.9.0.post0",
"pytz>=2024.2",
"redis>=5.2.1",
"sqlmodel>=0.0.22",
"tiktoken>=0.8.0",
"together>=1.3.3",
"uvicorn>=0.32.1",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = { include = ["app"] }