-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (43 loc) · 1.51 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/alttext"]
[project]
name = "alt-text"
version = "0.2.4"
authors = [
{ name = "Free Ebook Foundation", email = "[email protected]" },
{ name = "Jack Byrne", email = "[email protected]" },
{ name = "David Cruz", email = "[email protected]" },
{ name = "Jared Donnelly", email = "[email protected]" },
{ name = "Ethan Kleschinsky", email = "[email protected]" },
{ name = "Tyler Lane", email = "[email protected]" },
{ name = "Carson Lee", email = "[email protected]" },
]
maintainers = [
{ name = "Eric Hellman", email = "[email protected]" },
{ name = "David Cruz", email = "[email protected]" },
]
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 = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"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",
]
[project.urls]
"Source" = "https://github.com/EbookFoundation/alt-text"
"PyPi" = "https://pypi.org/project/alt-text/"
"Free Ebook Foundation" = "https://ebookfoundation.org/"