-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.99 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=57.0.0", "wheel"]
build-backend = "setuptools.build_meta"
# Project settings -----------------------------------------------------------------------------------------------------
[project]
name = "ohmytable"
dynamic = ["version"]
description = ""
readme = "README.md"
requires-python = ">=3.8"
keywords = ["deep-learning", "table-structure-recognition"]
authors = [
{ name = "Sanster" },
]
maintainers = [
{ name = "Sanster" },
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
# Required dependencies ------------------------------------------------------------------------------------------------
dependencies = [
"numpy>=1.23.0,<2.0.0",
"opencv-python>=4.6.0",
"torch>=1.8.0",
"torchvision>=0.9.0",
"ultralytics",
"loguru",
"huggingface-hub",
"tokenizers",
"shapely",
"pyclipper"
]
[project.urls]
"Bug Reports" = "https://github.com/Sanster/ohmytable/issues"
"Source" = "https://github.com/Sanster/ohmytable/"
# Tools settings -------------------------------------------------------------------------------------------------------
[tool.setuptools] # configuration specific to the `setuptools` build backend.
packages = { find = { where = ["."], include = ["ohmytable", "ohmytable.*"] } }
[tool.setuptools.dynamic]
version = { attr = "ohmytable.__version__" }
[tool.ruff]
line-length = 120