-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.31 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
[project]
name = "teachcraft"
version = "0.1.0"
description = "TeachCraft: LLM-based lesson generation from heterogeneous educational materials"
requires-python = ">=3.10,<3.13"
dependencies = [
"litellm>=1.40.0",
"playwright>=1.40.0",
"pydantic>=2.4.0",
"pydantic-settings>=2.0.0",
"httpx[socks]>=0.25.0",
"python-dotenv>=1.0.0",
"pillow>=10.0.0",
"orjson>=3.9.0",
"structlog>=24.1.0",
"python-pptx>=1.0.2",
"beautifulsoup4>=4.14.2",
"lxml>=6.0.2",
"numpy>=2.2.6",
"colormath>=3.0.0",
# Knowledge base dependencies
"docling>=2.0.0",
"docling-core>=2.0.0",
"chromadb>=0.4.0",
"openai-whisper>=20250625",
# Conversion utilities
"pdf2image>=1.16.0",
"markdownify>=1.2.2",
"rich>=14.2.0",
"click>=8.3.1",
"json-repair>=0.54.2",
# Bloom trajectory analysis
"scipy>=1.10.0",
"dtw-python>=1.3.0",
"matplotlib>=3.10.8",
"seaborn>=0.13.2",
"reportlab>=4.4.7",
"fonttools>=4.61.1",
]
[project.scripts]
teachcraft-generate = "slidesbench_runner:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["config", "generator", "models", "renderer", "utils", "knowledge", "exploration", "data", "cli", "evaluation", "baselines"]
[dependency-groups]
dev = []