Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,453 Bytes
21c87da 6baad51 21c87da 5ebeb73 21c87da 1e41501 6baad51 c115883 e03657f 1e41501 6baad51 5e081d3 ad688d5 b069f28 5ebeb73 21c87da 5ebeb73 21c87da 5ebeb73 21c87da 5ebeb73 21c87da 1e41501 381bbf4 |
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 64 |
[project]
name = "htrflow-app"
version = "1.0.1"
description = "htrflow-app is developed at Riksarkivet's AI-lab as a poc frontend to showcase HTRflow"
readme = "README.md"
license = {file = "LICENSE"}
authors = [{email = "[email protected]"}]
keywords = ["htr", "HTRflow", "ocr", "htrflow-app"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
requires-python = ">=3.10,<3.13"
dependencies = [
"htrflow==0.2.5",
"gradio>=5.17.0",
"tqdm>=4.67.1",
"gradio-modal>=0.0.4",
"dill>=0.3.9",
"spaces>=0.32.0",
"pycurl",
"pymupdf>=1.25.3",
]
[project.urls]
Homepage = "https://huggingface.co/spaces/Riksarkivet/htr_demo"
Repository = "https://github.com/AI-Riksarkivet/htrflow-app"
[tool.uv]
dev-dependencies = [
"python-dotenv >=1.0.1",
"ruff >=0.6.2",
"uv>=0.4.12",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.pytest.ini_options]
addopts = "-v"
pythonpath = "src"
testpaths = ["tests"]
[tool.ruff]
line-length = 119
target-version = "py310"
[tool.ruff.lint]
ignore = ["C901", "E741", "W605", "E501"]
select = ["C", "E", "F", "I", "W"]
|