-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 887 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (45 loc) · 887 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "threadbear"
version = "1.0.0"
requires-python = ">=3.10"
dependencies = [
"rich>=13.7",
"textual>=0.80.0",
"requests>=2.31",
"python-dotenv",
"PyPDF2>=3.0",
"pypdf>=4.0",
"python-docx>=1.1",
"ddgs>=9.0",
"beautifulsoup4>=4.12",
]
[project.scripts]
threadbear = "cli:run"
[tool.setuptools.packages.find]
include = [
"cli*",
"agent*",
"tools*",
"readers*",
"threadbear_services*",
]
[tool.setuptools]
py-modules = [
"api_clients",
"artifact_manager",
"branch_db",
"branch_manager",
"chat_manager",
"config_manager",
"content_security",
"context_documents",
"cost_tracker",
"document_db",
"error_classifier",
"folder_manager",
"message_compaction",
"prompt_templates",
]