-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (28 loc) · 904 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
34
[tool.poetry]
name = "frame-comparison-tool"
version = "0.1.0"
description = ""
authors = ["Roberto Anić Banić <[email protected]>"]
license = "MIT"
classifiers = [
"Development Status :: Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
loguru = "^0.7.2"
opencv-python-headless = "^4.9.0.80"
Pillow = "^10.3.0"
[tool.poetry.group.dev.dependencies]
pyinstaller = "^6.6.0"
[tool.poetry-pyinstaller-plugin.scripts]
frame-comparison-tool = { source = "frame_comparison_tool/__main__.py", type = "onefile", bundle = true }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"