-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (92 loc) · 4.02 KB
/
pyproject.toml
File metadata and controls
98 lines (92 loc) · 4.02 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools-scm"] # PEP 508 specs
build-backend = "setuptools.build_meta"
[project]
name = "pose2sim"
dynamic = ["version"] # Generate version from git tags
authors = [
{name = "David Pagnon", email = "contact@david-pagnon.com"},
]
maintainers = [
{name = "David Pagnon", email = "contact@david-pagnon.com"},
]
description = "Markerless kinematics with any cameras — From 2D Pose estimation to 3D OpenSim motion"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["markerless", "kinematics", "OpenPose", "OpenSim", "3D human pose", "biomechanics", "mocap", "blender", "motion capture"]
license = "BSD-3-Clause"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Education",
# "License :: OSI Approved :: BSD-3-Clause",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
]
urls = {Homepage = "https://github.com/perfanalytics/pose2sim", "Bug Tracker" = "https://github.com/perfanalytics/pose2sim/issues"}
dependencies = [
"toml",
"numpy<2.0; python_version<'3.12'",
"numpy>=2.0,<2.3; python_version>='3.12'",
"lxml",
"matplotlib",
"mpl_interactions",
"PyQt5",
"tqdm",
"anytree",
"pandas>=1.5",
"scipy",
"statsmodels",
"filterpy",
"ipython",
"c3d",
"rtmlib",
"openvino",
"onnxruntime",
"opencv-python != 4.11.*", # avoid 4.11 due to displaymatrix ignored (rotation metadata)
# "deep-sort-realtime", # likely not required anymore
"customtkinter",
"requests"
]
[tool.setuptools_scm]
[tool.setuptools]
packages = {find = {}}
[tool.setuptools.package-data]
"*" = ["OpenSim_Setup/**", "MarkerAugmenter/**", "Demo_SinglePerson/**", "Demo_SinglePerson/**/.*", "Demo_SinglePerson/**/**/.*", "Demo_SinglePerson/**/**/**/.*", "Demo_MultiPerson/**", "Demo_MultiPerson/**/.*", "Demo_Batch/**", "Demo_Batch/**/.*", "Demo_Batch/**/**/.*"]
[project.scripts]
AlphaPose_to_OpenPose = "Pose2Sim.Utilities.AlphaPose_to_OpenPose:main"
Blazepose_runsave = "Pose2Sim.Utilities.Blazepose_runsave:main"
bodykin_from_mot_osim = "Pose2Sim.Utilities.bodykin_from_mot_osim:main"
c3d_to_trc = "Pose2Sim.Utilities.c3d_to_trc:main"
calib_easymocap_to_toml = "Pose2Sim.Utilities.calib_easymocap_to_toml:main"
calib_from_checkerboard = "Pose2Sim.Utilities.calib_from_checkerboard:main"
calib_qca_to_toml = "Pose2Sim.Utilities.calib_qca_to_toml:main"
calib_toml_to_easymocap = "Pose2Sim.Utilities.calib_toml_to_easymocap:main"
calib_toml_to_opencap = "Pose2Sim.Utilities.calib_toml_to_opencap:main"
calib_toml_to_qca = "Pose2Sim.Utilities.calib_toml_to_qca:main"
DLC_to_OpenPose = "Pose2Sim.Utilities.DLC_to_OpenPose:main"
face_blurring = "Pose2Sim.Utilities.face_blurring:main"
json_display_with_img = "Pose2Sim.Utilities.json_display_with_img:main"
json_display_without_img = "Pose2Sim.Utilities.json_display_without_img:main"
MMPose_to_OpenPose = "Pose2Sim.Utilities.MMPose_to_OpenPose:main"
reproj_from_trc_calib = "Pose2Sim.Utilities.reproj_from_trc_calib:main"
trc_combine = "Pose2Sim.Utilities.trc_combine:main"
trc_desample = "Pose2Sim.Utilities.trc_desample:main"
trc_filter = "Pose2Sim.Utilities.trc_filter:main"
trc_from_easymocap = "Pose2Sim.Utilities.trc_from_easymocap:main"
trc_from_mot_osim = "Pose2Sim.Utilities.trc_from_mot_osim:main"
trc_gaitevents = "Pose2Sim.Utilities.trc_gaitevents:main"
trc_plot = "Pose2Sim.Utilities.trc_plot:main"
trc_to_c3d = "Pose2Sim.Utilities.trc_to_c3d:main"
trc_Zup_to_Yup = "Pose2Sim.Utilities.trc_Zup_to_Yup:main"
trc_rotate = "Pose2Sim.Utilities.trc_rotate:main"
trc_scale = "Pose2Sim.Utilities.trc_scale:main"
tests_pose2sim = "Pose2Sim.Utilities.tests:main"
Pose2Sim = "GUI.main:main"