-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
73 lines (67 loc) · 1.55 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "second-brain-agent"
version = "0.7.0"
description = "Second Brain AI Agent"
authors = [
{name = "Frederic Lepied", email = "flepied@gmail.com"}
]
license = "GPL-3.0"
readme = "README.md"
requires-python = ">=3.10,<3.12"
dependencies = [
"beautifulsoup4",
"chromadb>=1.1.1",
"huggingface-hub",
"langchain",
"langchain-community",
"langchain-chroma>=0.2.5",
"langchain-openai",
"langchain-huggingface",
"langchain-text-splitters",
"openai",
"pymupdf",
"python-dotenv",
"sentence-transformers",
"tiktoken",
"unstructured",
"youtube-transcript-api",
"yt-dlp",
"pydub",
"markdown",
"pydantic>=2.5.3",
"assemblyai>=0.17.0",
"fastmcp",
]
[project.optional-dependencies]
dev = [
"pyproject-pre-commit>=0.0.17",
]
test = [
"pytest",
"pytest-asyncio",
"pylint",
"pre-commit",
]
[project.urls]
Repository = "https://github.com/flepied/second-brain-agent"
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []
[tool.uv.sources]
chromadb = { path = "../chroma", editable = true }
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests (requires external services like vector database)",
"unit: marks tests as unit tests (can run without external services)",
]
addopts = [
"-v",
"--strict-markers",
"--disable-warnings",
]
testpaths = ["."]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]