-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (67 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "img-ops"
version = "0.1.2"
description = "Device-aware image operations (CPU/GPU/MPS fallback) with a clean Python API for preprocessing tasks."
authors = ["migutin83 <migutin83@yandex.ru>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "img_ops", from = "src" }]
homepage = "https://github.com/omigutin/img_ops"
repository = "https://github.com/users/omigutin/projects/4"
documentation = "https://github.com/omigutin/img_ops#readme"
keywords = [
"image-processing",
"image-operations",
"computer-vision",
"opencv",
"cuda",
"gpu",
"cpu",
"preprocessing",
"ndarray",
"numpy",
"contours",
"segmentation",
"hsv",
"gaussian-blur",
"python-library"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
"Natural Language :: Russian"
]
include = [
"src/img_ops/py.typed",
"README.ru.md"
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
numpy = "^1.26"
opencv-python = "^4.9" # на сервере можно заменить на opencv-python-headless
[tool.poetry.group.dev.dependencies]
mypy = "^1.10"
ruff = "^0.5"
pytest = "^8.2"
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
warn_unused_ignores = true
[tool.ruff]
line-length = 100
target-version = "py311"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"