-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.45 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "iMove"
version = "0.1.0"
description = "iMove is a biomechanics tool for multi-camera and sensor data acquisition in clinical, research, and training settings."
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
requires-python = ">=3.12"
authors = [{ name = "Arash Sal Moslehian", email = "[email protected]" }]
maintainers = [{ name = "Arash Sal Moslehian", email = "[email protected]"}]
urls = { Homepage = "https://llui.org" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"aniposelib==0.6.1",
"loguru==0.7.2",
"numpy==2.0.0",
"opencv-contrib-python==4.10.0.84",
"opencv-python==4.10.0.84",
"pandas==2.2.2",
"pyside6==6.7.2",
"pyside6-addons==6.7.2",
"pyside6-essentials==6.7.2",
"pyside6-stubs==6.4.2.0",
"pytz==2024.1",
"pyvirtualcam==0.11.1",
"pyyaml==6.0.1",
"scipy==1.14.0",
"toml==0.10.2",
"viztracer==0.16.3",
"pyhumps",
]
[tool.basedpyright]
typeCheckingMode = "basic"
reportAny = false
reportUntypedFunctionDecorator = false
include = ["src"]
executionEnvironments = [ { root = "src" } ]
[tool.basedpyright.defineConstant]
USE_PYQT6 = false
USE_PYQT5 = false
USE_PYSIDE6 = true
IS_QT5 = false
IS_QT6 = true
IS_PYQT = false
IS_PYSIDE = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"