-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 961 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 = "ai_podcast"
version = "0.1.0"
description = "An end to end workflow to create an AI powered podcast"
authors = ["Dirk Breeuwer"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "scripts" }]
[tool.poetry.dependencies]
python = "^3.10"
chromadb = "^0.4.13"
requests = "^2.31.0"
python-dotenv = "^1.0.0"
pysqlite3-binary = "^0.5.2"
langchain = "^0.0.304"
pytest = "^7.4.2"
openai = "^0.28.1"
python-decouple = "^3.8"
sentence-transformers = "^2.2.2"
torch = "^2.0.1"
transformers = { version = "^4.0", extras = ["torch"] }
magentic = "^0.7.0"
tiktoken = "^0.5.1"
bs4 = "^0.0.1"
streamlit = "^1.28.0"
matplotlib = "^3.8.0"
profilehooks = "^1.12.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.25.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
postinstall = "scripts.post_install:main"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"