-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (27 loc) · 895 Bytes
/
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
[project]
name = "xyseg"
version = "0.0.2"
description = "Recursive Segmentation Algorithm"
readme = "README.md"
requires-python =">=3.9"
license = {text = "Apache-2.0"}
authors = [
{name = "Johnathan Chiu", email = "[email protected]"},
]
keywords = ["images", "segmentation", "document", "parser"]
dependencies = ["numpy>=2.1.1", "pdfplumber>=0.11.4", "pillow>=10.4.0"]
[tool.setuptools]
packages = []
[tool.ruff]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F821", "E402"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["xyseg"]
[tool.hatch.build.targets.sdist]
exclude = ["*.json", "examples/**", "environment.yml", "*.ipynb"]
[project.urls]
Homepage = "https://github.com/johnathanchiu/recursive-segmentation"
Issues = "https://github.com/johnathanchiu/recursive-segmentation/issues"