-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
48 lines (44 loc) · 1.09 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
[tool.poetry]
name = "ailingbot"
version = "0.0.8"
description = "An all-in-one solution to empower your IM bot with AI."
authors = ["ericzhang-cn <[email protected]>"]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
pydantic = "^1.10.2"
cryptography = "^38.0.3"
arrow = "^1.2.3"
dynaconf = "^3.1.11"
fastapi = "^0.86.0"
xmltodict = "^0.13.0"
uvicorn = "^0.19.0"
loguru = "^0.6.0"
aiohttp = { version = "^3.8.3", extras = ["speedups"] }
tomli = "^2.0.1"
babel = "^2.11.0"
click = "^8.1.3"
asgiref = "^3.5.2"
tabulate = { version = "^0.9.0", extras = ["widechars"] }
emoji = "^2.2.0"
prompt-toolkit = "^3.0.33"
langchain = "^0.0.214"
openai = "^0.27.8"
rich = "^13.4.2"
tomlkit = "^0.11.8"
chromadb = "^0.3.26"
pypdf = "^3.11.0"
tiktoken = "^0.4.0"
sqlalchemy = "^2.0.17"
cachetools = "^5.3.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
sphinx = "^5.3.0"
pytest-asyncio = "^0.20.1"
blue = "^0.9.1"
[tool.poetry.scripts]
ailingbot = "ailingbot.cli.cli:command_line_tools"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"