-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 956 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 956 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
33
34
35
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "docai"
version = "0.0.1"
description = "This project focuses on document processing and information extraction using LayoutLMv3, a transformer-based model designed for structured document understanding. The system processes images or PDFs containing structured text (such as invoices, claims, or forms), extracts relevant textual and spatial information, and classifies key elements."
authors = [
{ name = "Daksh Maheshwari" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
requires-python = "~=3.10"
[tool.black]
line-length = 99
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
)/
'''
[tool.ruff]
# Add any other Ruff configuration here.
[tool.ruff.isort]
known_first_party = ["docai"]
force_sort_within_sections = true