-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.03 KB
/
pyproject.toml
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
[project]
name = "gmft"
version = "0.4.0"
description = "Lightweight, performant, deep table extraction"
authors = [
{name = "conjunct"},
{name = "conjuncts"}
]
license = {text = "MIT License"}
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pypdfium2 >= 4",
"transformers >= 4.35.2", # need the no_timm revision
"torch",
"pillow",
"pandas",
"matplotlib",
"tabulate"
]
[project.optional-dependencies]
pymupdf = [
"pymupdf"
]
tabled = [
"tabled-pdf >= 0.1.4"
]
[project.urls]
Homepage = "https://github.com/conjuncts/gmft"
Issues = "https://github.com/conjuncts/gmft/issues"
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.4,<4"]
[tool.flit.sdist]
include = ["gmft/**/*.py", "README.md", "LICENSE"]
exclude = ["test/**/*", "docs/**/*", "notebooks/**/*", "samples/**/*", "reading_list.md", "*.zip",
"*.tsv", "*.yaml",
"TODO.md", "CHANGELOG.md", "dev.md", "comparison.md"]