Skip to content

Commit 7445a0d

Browse files
committed
add pip setup pieces
1 parent 5960cd6 commit 7445a0d

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

.github/workflows/publish_pypi.yaml

Whitespace-only changes.

README.md

Whitespace-only changes.

pyproject.toml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[project]
2+
name = "xyimage"
3+
version = "0.0.1"
4+
description = "Recursive Segmentation Algorithm"
5+
readme = "README.md"
6+
requires-python =">=3.9"
7+
license = {text = "Apache-2.0"}
8+
authors = [
9+
{name = "Johnathan Chiu", email = "[email protected]"},
10+
]
11+
keywords = ["images", "segmentation", "document", "parser"]
12+
dependencies = ["numpy>=2.1.1", "pdfplumber>=0.11.4", "pillow>=10.4.0"]
13+
14+
[tool.setuptools]
15+
packages = []
16+
17+
[tool.ruff]
18+
[tool.ruff.lint.per-file-ignores]
19+
"__init__.py" = ["F401", "F821", "E402"]
20+
21+
[build-system]
22+
requires = ["setuptools>=64"]
23+
build-backend = "setuptools.build_meta"

requirements.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
numpy==2.1.1
2+
pdfminer.six==20231228
3+
pdfplumber==0.11.4
4+
pillow==10.4.0

0 commit comments

Comments
 (0)