-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.04 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
[project]
name = "mu2e"
version = "0.2.0"
description = "mu2e docdb and LLM interface"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4",
"httpx",
"pdfplumber",
"requests",
"urllib3",
"tiktoken",
"numpy",
"python-dotenv",
"openai>=1.0.0",
"anthropic",
"chromadb",
"tqdm",
"aiohttp",
"mcp[cli]",
"slack_sdk",
"pytz",
"flask",
"flask-socketio",
"python-pptx",
"python-docx",
"pandas",
"pillow",
"sentence_transformers"
]
[project.optional-dependencies]
minimal = [
"beautifulsoup4",
"httpx",
"pdfplumber",
"requests",
"numpy",
"python-dotenv"
]
slack = [
"slack_sdk",
"pytz"
]
mcp = [
"mcp[cli]>=2.0.0"
]
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project.scripts]
mu2e-docdb = "mu2e.cli.docdb_cli:main"
mu2e-chat = "mu2e.cli.chat_cli:main"
mu2e-slack = "mu2e.cli.slack_cli:main"
mu2e-web = "mu2e.web.app:main"
mu2e-mcp-server = "mu2e.mcp.docdb.server_fastmcp:main"