2023-10-16 20:26:01 +00:00
|
|
|
[build-system]
|
2024-02-02 19:17:12 +00:00
|
|
|
requires = [
|
|
|
|
"hatchling",
|
2024-03-21 23:24:03 +00:00
|
|
|
"beautifulsoup4==4.12.3",
|
|
|
|
"EbookLib==0.18",
|
|
|
|
"replicate==0.23.1",
|
|
|
|
"google-cloud-aiplatform==1.36.0",
|
|
|
|
"pytesseract==0.3.10",
|
|
|
|
"openai==1.13.3",
|
2024-02-02 19:17:12 +00:00
|
|
|
]
|
2023-10-16 20:26:01 +00:00
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
2024-02-02 19:42:59 +00:00
|
|
|
[tool.hatch.build.targets.wheel]
|
2024-02-02 19:53:18 +00:00
|
|
|
packages = ["src/alttext"]
|
2024-02-02 19:42:59 +00:00
|
|
|
|
2023-10-16 20:26:01 +00:00
|
|
|
[project]
|
2023-10-17 21:35:59 +00:00
|
|
|
name = "alt-text"
|
2024-03-21 23:24:03 +00:00
|
|
|
version = "0.2.4"
|
2023-10-16 20:26:01 +00:00
|
|
|
authors = [
|
2023-10-17 21:35:59 +00:00
|
|
|
{ name = "Free Ebook Foundation", email = "eric@ebookfoundation.org" },
|
2023-10-16 20:26:01 +00:00
|
|
|
{ name = "Jack Byrne", email = "jbyrne4@stevens.edu" },
|
|
|
|
{ name = "David Cruz", email = "dcruz2@stevens.edu" },
|
|
|
|
{ name = "Jared Donnelly", email = "jdonnel3@stevens.edu" },
|
|
|
|
{ name = "Ethan Kleschinsky", email = "ekleschi@stevens.edu" },
|
|
|
|
{ name = "Tyler Lane", email = "tlane@stevens.edu" },
|
|
|
|
{ name = "Carson Lee", email = "clee27@stevens.edu" },
|
|
|
|
]
|
|
|
|
maintainers = [
|
|
|
|
{ name = "Eric Hellman", email = "eric@hellman.net" },
|
2023-10-17 21:35:59 +00:00
|
|
|
{ name = "David Cruz", email = "dcruz2@stevens.edu" },
|
2023-10-16 20:26:01 +00:00
|
|
|
]
|
|
|
|
description = "A package used for finding, generating, and setting alt-text for images in HTML and EPUB files."
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.7"
|
|
|
|
classifiers = [
|
2023-11-06 22:10:32 +00:00
|
|
|
"Development Status :: 3 - Alpha",
|
2023-10-16 20:26:01 +00:00
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
2023-10-17 21:35:59 +00:00
|
|
|
"Intended Audience :: Developers",
|
2023-10-16 20:26:01 +00:00
|
|
|
"Operating System :: OS Independent",
|
2023-10-17 21:35:59 +00:00
|
|
|
"Programming Language :: Python :: 3",
|
2023-10-16 20:26:01 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
2023-10-17 21:35:59 +00:00
|
|
|
"Source" = "https://github.com/EbookFoundation/alt-text"
|
|
|
|
"PyPi" = "https://pypi.org/project/alt-text/"
|
|
|
|
"Free Ebook Foundation" = "https://ebookfoundation.org/"
|