diff --git a/license.md b/license.md deleted file mode 100644 index e04aaf2..0000000 --- a/license.md +++ /dev/null @@ -1,8 +0,0 @@ -Copyright 2020-2022 by The Mathis Laboratory of Adaptive Motor Control, Mackenzie Mathis, & contributors. All rights reserved. -This project and all its files are available for non-commerical use only. This software may not be used to harm any person or animal deliberately. - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/reinstall.sh b/reinstall.sh index 41c9290..05d156b 100755 --- a/reinstall.sh +++ b/reinstall.sh @@ -1,3 +1,3 @@ pip uninstall dlc2kinematics python3 setup.py sdist bdist_wheel -pip install dist/dlc2kinematics-0.0.5-py3-none-any.whl +pip install dist/dlc2kinematics-0.0.7-py3-none-any.whl diff --git a/setup.cfg b/setup.cfg index 024b7e3..bef2dd9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dlc2kinematics -version = 0.0.3 +version = 0.0.7 description = A post-deeplabcut module for kinematic analysis long_description = file: README.md long_description_content_type = text/markdown diff --git a/setup.py b/setup.py index 3ca2dfd..088627f 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setuptools.setup( name="dlc2kinematics", - version="0.0.6", + version="0.0.7", author="Mackenzie Mathis Lab Members", author_email="mackenzie@post.harvard.edu", description="Library for kinematic analysis of DeepLabCut outputs", @@ -21,6 +21,7 @@ url="https://github.com/AdaptiveMotorControlLab/dlc2kinematics/", install_requires=[ "h5py", + "c3d", "ipython", "ipython-genutils", "matplotlib>=3.0.3", diff --git a/src/dlc2kinematics/version.py b/src/dlc2kinematics/version.py index b0e1cd3..5e4a984 100644 --- a/src/dlc2kinematics/version.py +++ b/src/dlc2kinematics/version.py @@ -4,5 +4,5 @@ https://github.com/AdaptiveMotorControlLab/dlc2kinematics/ """ -__version__ = "0.0.5" +__version__ = "0.0.7" VERSION = __version__