-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.01 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
[tool.poetry]
name = "image-processing-widget"
version = "0.2.7"
description = "GUI to explore OpenCV image processing functions"
authors = ["wenliangyeoh <[email protected]>"]
readme = "README.md"
repository = "https://github.com/cps-lab-saga/image-processing-widget"
keywords = ["opencv", "gui", "pyside6"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Education",
]
include = [
"image_processing_config.ini",
"image_processing_widget/resource/*",
"plugins/*",
"plugins/**/*",
]
[tool.poetry.dependencies]
python = ">3.10, <3.12"
pyqtgraph = "~0.13"
QtAwesome = "~1.1"
Yapsy = "~1.12"
numpy = "~1.24"
PySide6 = "~6.4"
opencv-contrib-python = "~4.7"
superqt = "~0.4"
[tool.poetry.dev-dependencies]
black = "~22.12.0"
pytest = "~7.2"
pyinstaller = "~5.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
image_processing = 'image_processing_widget.main_widget:main'