c3d-parser 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- c3d_parser-0.1.1/LICENSE +14 -0
- c3d_parser-0.1.1/PKG-INFO +32 -0
- c3d_parser-0.1.1/README.md +1 -0
- c3d_parser-0.1.1/pyproject.toml +27 -0
- c3d_parser-0.1.1/requirements.txt +7 -0
- c3d_parser-0.1.1/setup.cfg +4 -0
- c3d_parser-0.1.1/src/c3d_parser/__init__.py +0 -0
- c3d_parser-0.1.1/src/c3d_parser/application.py +21 -0
- c3d_parser-0.1.1/src/c3d_parser/core/c3d_parser.py +1112 -0
- c3d_parser-0.1.1/src/c3d_parser/core/c3d_patch.py +71 -0
- c3d_parser-0.1.1/src/c3d_parser/core/osim.py +66 -0
- c3d_parser-0.1.1/src/c3d_parser/settings/general.py +2 -0
- c3d_parser-0.1.1/src/c3d_parser/view/dialogs/options_dialog.py +22 -0
- c3d_parser-0.1.1/src/c3d_parser/view/dialogs/subject_info_dialog.py +18 -0
- c3d_parser-0.1.1/src/c3d_parser/view/main_window.py +563 -0
- c3d_parser-0.1.1/src/c3d_parser/view/ui/ui_main_window.py +253 -0
- c3d_parser-0.1.1/src/c3d_parser/view/ui/ui_options_dialog.py +67 -0
- c3d_parser-0.1.1/src/c3d_parser/view/ui/ui_subject_info_dialog.py +127 -0
- c3d_parser-0.1.1/src/c3d_parser/view/widgets.py +47 -0
- c3d_parser-0.1.1/src/c3d_parser.egg-info/PKG-INFO +32 -0
- c3d_parser-0.1.1/src/c3d_parser.egg-info/SOURCES.txt +24 -0
- c3d_parser-0.1.1/src/c3d_parser.egg-info/dependency_links.txt +1 -0
- c3d_parser-0.1.1/src/c3d_parser.egg-info/entry_points.txt +2 -0
- c3d_parser-0.1.1/src/c3d_parser.egg-info/requires.txt +7 -0
- c3d_parser-0.1.1/src/c3d_parser.egg-info/top_level.txt +1 -0
- c3d_parser-0.1.1/tests/test_parser.py +19 -0
c3d_parser-0.1.1/LICENSE
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
Copyright 2024 University of Auckland
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: c3d-parser
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: C3D parser for gait data harmonisation.
|
|
5
|
+
Author-email: Timothy Salemink <tim.nicolas@outlook.com>, Sally Jack <sallyjaack@gmail.com>
|
|
6
|
+
License:
|
|
7
|
+
Copyright 2024 University of Auckland
|
|
8
|
+
|
|
9
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
+
you may not use this file except in compliance with the License.
|
|
11
|
+
You may obtain a copy of the License at
|
|
12
|
+
|
|
13
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
14
|
+
|
|
15
|
+
Unless required by applicable law or agreed to in writing, software
|
|
16
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
17
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
18
|
+
See the License for the specific language governing permissions and
|
|
19
|
+
limitations under the License.
|
|
20
|
+
|
|
21
|
+
Project-URL: Repository, https://github.com/tsalemink/C3D-parser
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Requires-Dist: scipy
|
|
25
|
+
Requires-Dist: numpy
|
|
26
|
+
Requires-Dist: pandas
|
|
27
|
+
Requires-Dist: c3d
|
|
28
|
+
Requires-Dist: trc-data-reader
|
|
29
|
+
Requires-Dist: PySide6
|
|
30
|
+
Requires-Dist: matplotlib
|
|
31
|
+
|
|
32
|
+
# C3D-parser
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# C3D-parser
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[options]
|
|
6
|
+
package_dir = {'' = 'src'}
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "c3d-parser"
|
|
10
|
+
description = "C3D parser for gait data harmonisation."
|
|
11
|
+
authors = [{name = "Timothy Salemink", email = "tim.nicolas@outlook.com" },
|
|
12
|
+
{name = "Sally Jack", email = "sallyjaack@gmail.com"}]
|
|
13
|
+
version = "0.1.1"
|
|
14
|
+
readme = "README.md"
|
|
15
|
+
license = { file = "LICENSE" }
|
|
16
|
+
dynamic = ["dependencies"]
|
|
17
|
+
|
|
18
|
+
[tool.setuptools.dynamic]
|
|
19
|
+
dependencies = {file = ["requirements.txt"]}
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Repository = "https://github.com/tsalemink/C3D-parser"
|
|
23
|
+
|
|
24
|
+
# Use `scripts` for debugging.
|
|
25
|
+
# [project.scripts]
|
|
26
|
+
[project.gui-scripts]
|
|
27
|
+
c3d_parser = "c3d_parser.application:main"
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
|
|
2
|
+
import sys
|
|
3
|
+
|
|
4
|
+
from PySide6.QtWidgets import QApplication
|
|
5
|
+
|
|
6
|
+
from c3d_parser.view.main_window import MainWindow
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def main():
|
|
10
|
+
app = QApplication(sys.argv)
|
|
11
|
+
app.setOrganizationName("Auckland Bioengineering Institute")
|
|
12
|
+
app.setApplicationName("C3D Parser")
|
|
13
|
+
|
|
14
|
+
window = MainWindow()
|
|
15
|
+
window.show()
|
|
16
|
+
|
|
17
|
+
sys.exit(app.exec())
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
if __name__ == '__main__':
|
|
21
|
+
main()
|