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.
@@ -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"
@@ -0,0 +1,7 @@
1
+ scipy
2
+ numpy
3
+ pandas
4
+ c3d
5
+ trc-data-reader
6
+ PySide6
7
+ matplotlib
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
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()