-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.3 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
[build-system]
requires = ["maturin>=1.7,<2"]
build-backend = "maturin"
[project]
name = "edgeparse"
requires-python = ">=3.9"
dynamic = ["version"]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing",
]
keywords = ["pdf", "extraction", "markdown", "rag", "llm"]
description = "High-performance PDF-to-structured-data extraction — Rust engine, Python interface"
[project.urls]
Homepage = "https://www.edgeparse.com"
Repository = "https://github.com/raphaelmansuy/edgeparse"
Documentation = "https://github.com/raphaelmansuy/edgeparse/tree/main/docs"
[project.scripts]
edgeparse = "edgeparse.cli:main"
[tool.maturin]
manifest-path = "../../crates/edgeparse-python/Cargo.toml"
python-source = "."
module-name = "edgeparse._edgeparse"
features = ["pyo3/extension-module"]
[tool.pytest.ini_options]
testpaths = ["tests"]