-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (62 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (62 loc) · 1.8 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
[project]
name = "ureca_document_parser"
version = "0.0.9"
description = "Multi-format document parser and converter (HWP, HWPX, PDF, Image)"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
authors = [
{ name = "Ureca Enterprise Corp", email = "andy@ureca.im" }
]
keywords = ["hwp", "hwpx", "document", "parser", "converter", "markdown"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Text Processing :: Markup",
]
dependencies = [
"olefile>=0.47",
]
[project.urls]
Homepage = "https://ureca-corp.github.io/document_parser/"
Documentation = "https://ureca-corp.github.io/document_parser/"
Repository = "https://github.com/ureca-corp/document_parser"
Issues = "https://github.com/ureca-corp/document_parser/issues"
[project.optional-dependencies]
langchain = ["langchain-text-splitters>=0.2", "langchain-core>=0.2"]
pdf = ["pymupdf>=1.24"]
ocr = ["pillow>=10.0", "pytesseract>=0.3"]
all = ["ureca_document_parser[langchain,pdf,ocr,docs]"]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.27",
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"mypy>=1.10",
"ruff>=0.4",
]
[project.scripts]
ureca_document_parser = "ureca_document_parser.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ureca_document_parser"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
python_version = "3.12"
strict = true
packages = ["ureca_document_parser"]
mypy_path = "src"
[tool.ruff]
target-version = "py312"
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]