forked from lycantrope/imagesubtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 881 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "imagesubtractor"
authors = [{ name = "Taizo Kawano", email = "[email protected]" }]
maintainers = [
{ name = "Taizo Kawano", email = "[email protected]" },
{ name = "Chung-Kuan Chen", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
dynamic = ["version", "description"]
dependencies = [
"opencv-python-headless",
"pandas",
"numpy",
"dataclasses",
"PySide2",
"tqdm",
]
[project.urls]
Home = "https://github.com/lycantrope/imagesubtractor"
[project.optional-dependencies]
dev = ["black", "pre-commit"]
[project.scripts]
imagesubtractor = "imagesubtractor.app:run_app"