-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.07 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
[tool.poetry]
name = "vocode-telegram-bot"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.10.0,<3.11"
pydub = "^0.25.1"
replit = "^3.5.0"
google-cloud-texttospeech = "^2.15.1"
pydantic = "^2"
# pydantic = "^1.10.14"
python-telegram-bot = "20.8"
black = "^24.2.0"
ipython = "^8.21.0"
azure-cognitiveservices-speech = "^1.31.0"
# vocode = "^0.1.111"
vocode = { git = "https://github.com/ArtisanLabs/vocode-python.git", branch = "498-async-turnbased-azure-synthesize" }
langchainhub = "0.1.14"
langchain = "0.1.4"
langchain-community = "0.0.16"
langchain-core = "0.1.21"
langsmith = "0.0.87"
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
useLibraryCodeForTypes = true
exclude = [".cache"]
[tool.ruff]
# https://beta.ruff.rs/docs/configuration/
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
ignore = ['W291', 'W292', 'W293']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py310']