-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 857 Bytes
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "impro"
version = "0.0.6"
description = "Image Processing Functions"
readme = "README.md"
authors = [{ name = "Marlon Rodrigues Garcia", email = "marlon.garcia@unesp.br" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["image processing", "digital image", "image functions"]
dependencies = [
"numpy",
"opencv-contrib-python",
"matplotlib",
"imfun",
"scikit-learn",
"tqdm",
"pillow_heif",
"pmcx"
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/MarlonGarcia/impro"
[project.scripts]
realpython = "impro.__main__:main"