-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
44 lines (40 loc) · 1005 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
42
43
44
[tool.poetry]
name = "dialog"
version = "0.1.0"
description = "Humanized Conversation API (using LLM)"
authors = [
"Avelino <[email protected]>",
"Vinicius Mesel <[email protected]>",
]
readme = "README.md"
homepage = "https://github.com/talkdai/dialog"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
fastapi = "0.109.2"
uvicorn = { extras = ["standard"], version = "0.24.0.post1" }
psycopg2 = "2.9.9"
python-decouple = "3.8"
pydantic = "2.7.4"
psycopg = "3.2.2"
tiktoken = "<1"
pandas = "2.1.3"
scikit-learn = "1.5.0"
alembic = "1.12.1"
importlib-metadata = "7.0.1"
pyarrow = "15.0.0"
iniconfig = "2.0.0"
dialog-lib = "0.0.3.0"
langserve = "0.2.0"
sse-starlette = "2.1.0"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
black = "^24.3.0"
isort = "^5.12.0"
responses = "^0.25.0"
pytest-mock = "^3.12.0"
pytest-alembic = "^0.11.0"
pytest-cov = "^4.1.0"
pytest-timeout = "^2.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"