Skip to content

Commit a4c022c

Browse files
authored
bump to 0.0.7 (#41)
* Update setup.py - adding c3d - which was required given the merge of #31 * - remove outdated file * Update setup.py * Update setup.cfg * Update reinstall.sh * fix version 0.0.7
1 parent 3ac1a57 commit a4c022c

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

license.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

reinstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pip uninstall dlc2kinematics
22
python3 setup.py sdist bdist_wheel
3-
pip install dist/dlc2kinematics-0.0.5-py3-none-any.whl
3+
pip install dist/dlc2kinematics-0.0.7-py3-none-any.whl

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dlc2kinematics
3-
version = 0.0.3
3+
version = 0.0.7
44
description = A post-deeplabcut module for kinematic analysis
55
long_description = file: README.md
66
long_description_content_type = text/markdown

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setuptools.setup(
1414
name="dlc2kinematics",
15-
version="0.0.6",
15+
version="0.0.7",
1616
author="Mackenzie Mathis Lab Members",
1717
author_email="[email protected]",
1818
description="Library for kinematic analysis of DeepLabCut outputs",
@@ -21,6 +21,7 @@
2121
url="https://github.com/AdaptiveMotorControlLab/dlc2kinematics/",
2222
install_requires=[
2323
"h5py",
24+
"c3d",
2425
"ipython",
2526
"ipython-genutils",
2627
"matplotlib>=3.0.3",

src/dlc2kinematics/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
https://github.com/AdaptiveMotorControlLab/dlc2kinematics/
55
"""
66

7-
__version__ = "0.0.5"
7+
__version__ = "0.0.7"
88
VERSION = __version__

0 commit comments

Comments
 (0)