-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 951 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (26 loc) · 951 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "mathforge"
version = "1.0.0"
description = "Local math-PDF recognition, Markdown normalization, SQLite question banking, Obsidian sync and paper export."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [{name = "MathForge contributors"}]
dependencies = []
[project.optional-dependencies]
local-ui = ["mineru[core]>=3.4,<4", "streamlit>=1.58,<2"]
paddleocr = ["paddleocr>=3.0,<4", "paddlepaddle>=3.0,<4"]
fullstack-api = ["fastapi>=0.115,<1", "uvicorn[standard]>=0.30,<1", "python-multipart>=0.0.20,<1"]
[project.scripts]
mathforge = "pdf_markdown_cli.main:main"
pdf-to-markdown = "pdf_markdown_cli.main:main"
question-bank = "pdf_markdown_cli.question_bank.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]