-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) ยท 740 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (24 loc) ยท 740 Bytes
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
[tool.poetry]
name = "textbase-client"
version = "0.1.2"
description = "A python library to help you create chatbots easily with some more configurations"
authors = ["kaus-cofactory <kaustubhshukla@cofactory.ai>", "sammyCofactory <samarthar@cofactory.ai>"]
readme = "README.md"
packages = [{include = "textbase"}]
[tool.poetry.dependencies]
python = "^3.9.0"
requests = "^2.31.0"
openai = "^0.27.8"
python-dotenv = "^1.0.0"
tabulate = "^0.9.0"
functions-framework = "^3.4.0"
yaspin = "^3.0.0"
pydantic = "^2.3.0"
sounddevice = "0.4.1"
wavio = "0.0.4"
google-cloud-storage = "^2.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
textbase-client = "textbase.textbase_cli:cli"