-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.11 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
49
50
51
[tool.poetry]
name = "second-brain-agent"
version = "0.6.0"
description = "Second Brain AI Agent"
authors = ["Frederic Lepied <[email protected]>"]
license = "GPL 3.0"
readme = "README.md"
repository = "https://www.github.com/flepied/second-brain-agent"
[tool.poetry.group.dev.dependencies]
pyproject-pre-commit = "^0.0.17"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies] # main dependency group
python = ">=3.9,<3.12"
bs4 = "*"
chromadb = ">=0.4"
huggingface_hub = "*"
langchain = "*"
langchain-community = "*"
langchain-openai = "*"
langchain-huggingface = "*"
openai = "*"
pymupdf = "*"
python-dotenv = "*"
sentence-transformers = "*"
streamlit = "*"
tiktoken = "*"
unstructured = "*"
youtube-transcript-api = "*"
yt-dlp = "*"
pydub = "*"
markdown = "*"
# avoid incompatibility with langchain
pydantic = ">=1.9,<2.0"
# workarounds for streamlit dependencies
altair = "<5"
protobuf = "~=3.19.0"
click = "=8"
assemblyai = "^0.17.0"
[tool.poetry.group.test] # This part can be left out
[tool.poetry.group.test.dependencies]
pytest = "*"
pylint = "*"
pre-commit = "*"