-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (43 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "istacky"
version = "0.2"
authors = [{ name = "Antoine EDY", email = "[email protected]" }]
description = "A lightweight image processing library"
readme = "README_PyPi.md"
requires-python = ">=3.8"
license = { text = "MIT License" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [
"image",
"image stacking",
"photoshop",
"image processing",
"image editing",
"image blending",
"image fusion",
]
dependencies = [
"pillow",
"numpy",
"ipywidgets",
"opencv-python",
"pandas",
"ipyfilechooser",
"ipykernel",
"nbconvert",
"ipython",
"nbclient",
"notebook",
]
[project.urls]
Homepage = "https://github.com/antoineedy/istacky"
Documentation = "https://antoineedy.github.io/istacky/"
Repository = "https://github.com/antoineedy/istacky"
Issues = "https://github.com/antoineedy/istacky/issues"