-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (77 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
89 lines (77 loc) · 1.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = [
"setuptools>=68",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "layoutscribe"
version = "0.1.0a3"
description = "LLM-only, agentic layout & text extraction to Markdown/Text/Layout JSON"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
{ name = "LayoutScribe Contributors" }
]
keywords = ["llm", "vision", "layout", "markdown", "pdf", "pptx", "docx"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = [
"litellm",
"langgraph",
"mlflow",
"pydantic>=2",
"pydantic-settings",
"pymupdf",
"Pillow",
"typer>=0.9",
"jsonschema",
"tenacity",
]
[project.optional-dependencies]
office = [
"python-pptx",
"python-docx",
]
dev = [
"ruff",
"black",
"pytest",
"pytest-asyncio",
]
[project.scripts]
layoutscribe = "layoutscribe.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
layoutscribe = ["schema/*.json"]
[project.urls]
Homepage = "https://github.com/your-org/layoutscribe"
Issues = "https://github.com/your-org/layoutscribe/issues"
Documentation = "https://github.com/your-org/layoutscribe#readme"
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
select = [
"E",
"F",
"I",
]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]