-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (45 loc) · 1.6 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
47
48
[project]
name = "apple-ocr"
version = "1.0.8"
description = "An OCR (Optical Character Recognition) utility for text extraction from images."
readme = "README.md"
keywords = ["OCR", "image-recognition", "text-extraction", "clustering", "Apple Vision", "NLP", "LLM", "data"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[options]
packages = ["find:"]
install_requires = [
"torch",
"numpy",
"pandas",
"Pillow",
"scikit-learn",
"plotly",
"pyobjc"
]
[metadata]
name = "apple-ocr"
version = "1.0.8"
license = "Apache License 2.0"
author = "Louis Brulé Naudet"
author_email = "[email protected]"
description = "An OCR (Optical Character Recognition) utility for text extraction from images."
long_description = "file: README.md"
long_description_content_type = "text/markdown"
url = "https://github.com/louisbrulenaudet/apple-ocr"
homepage = "https://github.com/louisbrulenaudet/apple-ocr"
project_urls = {repository = "https://github.com/louisbrulenaudet/apple-ocr"}
keywords = "OCR, image-recognition, text-extraction, clustering, Apple Vision, NLP, LLM, data"