30 lines
685 B
TOML
30 lines
685 B
TOML
[project]
|
|
name = "second-brain"
|
|
version = "0.1.0"
|
|
description = "Personal knowledge system: video/article extraction pipeline + LLM-maintained wiki"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"anthropic>=0.40.0",
|
|
"click>=8.1.0",
|
|
"fastapi>=0.115.0",
|
|
"jinja2>=3.1.0",
|
|
"openai-whisper",
|
|
"pydantic>=2.0.0",
|
|
"python-dotenv>=1.0.0",
|
|
"sqlalchemy>=2.0.0",
|
|
"tomli>=2.0.0",
|
|
"trafilatura>=1.9.0",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"yt-dlp>=2024.1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
second-brain = "second_brain.main:cli"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/second_brain"]
|