dougvk/Unlimited-OCR-RDNA4
0
1[build-system]2requires = ["hatchling==1.27.0"]3build-backend = "hatchling.build"4 5[project]6name = "unlimited-ocr-rdna4"7dynamic = ["version"]8description = "Verified local Unlimited-OCR inference on AMD RDNA 4 with ROCm"9readme = "README.md"10requires-python = ">=3.12,<3.13"11license = {file = "LICENSE"}12authors = [{name = "Douglas von Kohorn"}]13keywords = ["ocr", "rocm", "rdna4", "gfx1201", "amd", "transformers"]14classifiers = [15 "Development Status :: 4 - Beta",16 "Environment :: Console",17 "Intended Audience :: Developers",18 "Intended Audience :: Science/Research",19 "License :: OSI Approved :: MIT License",20 "Operating System :: POSIX :: Linux",21 "Programming Language :: Python :: 3",22 "Programming Language :: Python :: 3.12",23 "Topic :: Scientific/Engineering :: Artificial Intelligence",24]25dependencies = [26 "addict==2.4.0",27 "easydict==1.13",28 "einops==0.8.2",29 "huggingface-hub==0.36.2",30 "matplotlib==3.10.8",31 "numpy==1.26.4",32 "Pillow==12.1.1",33 "psutil==7.2.2",34 "pypdfium2==5.12.1",35 "requests==2.34.2",36 "safetensors==0.8.0",37 "tqdm==4.70.0",38 "transformers==4.57.1",39]40 41[project.optional-dependencies]42dev = ["build==1.5.0", "pytest==8.4.2", "pytest-cov==6.3.0", "ruff==0.14.14", "twine==6.2.0"]43 44[project.scripts]45unlimited-ocr-rdna4 = "unlimited_ocr_rdna4.cli:main"46 47[project.urls]48Homepage = "https://huggingface.co/dougvk/Unlimited-OCR-RDNA4"49Documentation = "https://huggingface.co/dougvk/Unlimited-OCR-RDNA4#readme"50Issues = "https://huggingface.co/dougvk/Unlimited-OCR-RDNA4/discussions"51Source = "https://huggingface.co/dougvk/Unlimited-OCR-RDNA4"52 53[tool.hatch.build.targets.wheel]54packages = ["src/unlimited_ocr_rdna4"]55 56[tool.hatch.version]57path = "src/unlimited_ocr_rdna4/constants.py"58 59[tool.pytest.ini_options]60addopts = "-q"61testpaths = ["tests"]62 63[tool.ruff]64line-length = 12065target-version = "py312"66 67[tool.ruff.lint]68select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]69allowed-confusables = ["|"]70 71[tool.ruff.format]72quote-style = "double"73 