-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 883 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "image-functions"
version = "0.1.12"
description = "Image Processing Functions"
readme = "README.md"
authors = [{ name = "Marlon Rodrigues Garcia", email = "marlon.garcia@unesp.br" }]
license = "MIT"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["image processing", "digital image", "image functions", "machine learning data preparation", "artificial intelligence data preparation"]
dependencies = [
"numpy",
"opencv-contrib-python",
"matplotlib",
"scipy",
"pandas",
"tifffile",
"scikit-image",
"natsort"
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/MarlonGarcia/imfun"
[tool.setuptools]
license-files = ["LICENSE"]