-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 762 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 762 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
37
38
39
40
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "paste-bar-code"
description = ""
dynamic = ["version"]
# version = "0.0.1"
requires-python = ">=3.13,<3.14"
dependencies = [
"cv2-enumerate-cameras>=1.3.0",
"eventlet>=0.40.4",
"flask>=3.1.2",
"flask-socketio>=5.5.1",
"opencv-python>=4.12.0.88",
"pyautogui>=0.9.54",
"pyside6>=6.10.1",
"pyzbar>=0.1.9",
]
[tool.ruff]
line-length = 100
select = ["I"]
[dependency-groups]
audio-gen = [
"scipy>=1.16.3",
]
dev = [
"pyside-widget-reloader>=0.0.3",
"pytest>=8.0.0",
]
setup = [
"pyinstaller>=6.17.0",
]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"