Skip to content

Commit

Permalink
Fixed installation issues. Closes EmbodiedCognition#46
Browse files Browse the repository at this point in the history
  • Loading branch information
AKuederle committed Mar 22, 2022
1 parent fc1b118 commit fbd3393
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [0.5.1] - 22.03.2022

- Fixed installation issues due to maleformated pyproject.toml file
- Scripts are now located withing the c3d folder to avoid packaging issues

## [0.5.0] - 20.03.2022

First version for which we keep changelogs.
Expand Down
Empty file added c3d/scripts/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ classifiers=[
]

[tool.poetry.scripts]
c3d2csv = 'scripts.c3d2csv:main()'
c3d2npz = 'scripts.c3d2npz:main()'
c3d-metatdata = 'scripts.c3d_metatdata:main()'
c3d-viewer = 'scripts.c3d_viewer:main()'
c3d2csv = 'c3d.scripts.c3d2csv:main'
c3d2npz = 'c3d.scripts.c3d2npz:main'
c3d-metatdata = 'c3d.scripts.c3d_metatdata:main'
c3d-viewer = 'c3d.scripts.c3d_viewer:main'

[tool.poetry.dependencies]
python = "^3.7"
Expand Down
2 changes: 1 addition & 1 deletion test/test_c3d2csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
from test.zipload import Zipload
from test.zipload import TEMP
from scripts.c3d2csv import convert
from c3d.scripts.c3d2csv import convert


class Script_c3d2csv_Test(unittest.TestCase):
Expand Down

0 comments on commit fbd3393

Please sign in to comment.