-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (50 loc) · 1.57 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyimagekit"
version = "0.1.0a2"
description = "A Python library that provides a unified interface for handling images across multiple formats and performing common image processing tasks."
readme = "README.md"
license = 'MIT'
license-files = ['LICENSE']
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
"Natural Language :: English",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.21.6",
"opencv-python-headless>=4.13.0.92",
"pillow>=9.5.0",
"pydantic>=2.5.3",
]
[project.optional-dependencies]
pytesseract = ["pytesseract>=0.3.13"]
all = ["pytesseract"]
[dependency-groups]
dev = ["pytest>=7.4.4"]
[project.urls]
Repository = "https://github.com/Hoopoes/pyimagekit"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
explicit = true