-
Notifications
You must be signed in to change notification settings - Fork 113
/
pyproject.toml
43 lines (40 loc) · 1.2 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
[tool.poetry]
name = "aitools"
version = "0.1.0"
description = "AI Tooling to bootstrap applications fast"
authors = ["Tushar <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9, <3.11"
asyncio = "^3.4.3"
aiohttp = "^3.8.4"
quart = "^0.18.3"
flask = "^2.2.3"
inference = "^0.1"
flake8 = "^6.0.0"
openai-async = "^0.0.3"
openai = "^0.27.4"
async-cache = "^1.1.1"
python-dotenv = "^1.0.0"
tiktoken = "^0.3.3"
numpy = "^1.24.2"
pandas = "^2.0.0"
matplotlib = "^3.7.1"
plotly = "^5.14.1"
spacy-experimental = "0.6.2"
en-coreference-web-trf = {url = "https://github.com/explosion/spacy-experimental/releases/download/v0.6.1/en_coreference_web_trf-3.4.0a2-py3-none-any.whl"}
pipdeptree = "2.0.0"
quart-compress = "^0.2.1"
scipy = "^1.10.1"
scikit-learn = "^1.2.2"
google-cloud-speech = "^2.19.0"
google-auth = "^2.17.3"
pydub = "^0.25.1"
google-cloud-translate = "^3.11.1"
en-core-web-sm = {url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.4.1/en_core_web_sm-3.4.1-py3-none-any.whl"}
fastcoref = {extras = ["train"], version = "^2.1.6"}
dsp-ml = "^0.1.5"
accelerate = "^0.21.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"