Skip to content

Commit 7397202

Browse files
authored
Merge pull request #1 from AdaptiveMotorControlLab/rename
rename
2 parents 82c41b0 + 6b644a2 commit 7397202

File tree

7 files changed

+31
-35
lines changed

7 files changed

+31
-35
lines changed

README.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
1-
<img src="https://images.squarespace-cdn.com/content/v1/57f6d51c9f74566f55ecf271/1564770305666-REUUID2FV6D7B361DZMP/ke17ZwdGBToddI8pDm48kPXc-1wTDUYu2KG1axT7Q_oUqsxRUqqbr1mOJYKfIPR7LoDQ9mXPOjoJoqy81S2I8N_N4V1vUb5AoIIIbLZhVYy7Mythp_T-mtop-vrsUOmeInPi9iDjx9w8K4ZfjXt2dhYH2CD2cFRECnu4OwLnVR-scfeCFITgXNUMaLL3uIzDCjLISwBs8eEdxAxTptZAUg/KINEMATIK-logo.png?format=1000w" width="350" title="camera control" alt="cam cntrl" align="center" vspace = "80">
2-
3-
[![PyPI version](https://badge.fury.io/py/kinematik.svg)](https://badge.fury.io/py/kinematik)
4-
[![PyPI - Downloads](https://img.shields.io/pypi/dm/kinematik.svg?color=purple&label=PyPi)](https://pypistats.org/packages/kinematik)
1+
<img src="https://images.squarespace-cdn.com/content/v1/57f6d51c9f74566f55ecf271/1628452157953-RBVUGI7M3ABF9AOSUMMS/DLC2k.jpg?format=2500w" width="350" title="camera control" alt="cam cntrl" align="center" vspace = "80">
52

63

74
#### A post-deeplabcut module for kinematic analysis
85

9-
### under construction ...
10-
Currently this is not publicly available, but feel free to "watch" or "star" to be notified of updates.
6+
### under construction ...
7+
8+
Currently this is not yet publicly available, but feel free to "watch" or "star" to be notified of updates.
119

1210
## Quick start
1311

14-
`pip install kinematik`
12+
`pip install dlc2kinematics`
1513

1614
## License
1715

18-
Kinematik is freely available for non-commercial use, and may be redistributed under these conditions.
19-
Please, see the license for further details.
16+
DLC2Kinematics is freely available for non-commercial use, and may be redistributed under these conditions. Please, see the license for further details.
2017

2118
## Contact
2219

23-
Mackenzie Mathis - mackenzie@post.harvard.edu
20+
Mackenzie Mathis - mackenzie[email protected]

dlc2kinematics/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
DLC2Kinematics
3+
©M. Mathis Labs
4+
"""
5+
6+
from dlc2kinamtics.version import __version__

dlc2kinematics/version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__='0.0b1'

kinematik/__init__.py

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

kinematik/version.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

reinstall.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
pip uninstall kinematik
1+
pip uninstall dlc2kinamtics
22
python3 setup.py sdist bdist_wheel
3-
pip install dist/kinematik-0.0b0-py3-none-any.whl
4-
3+
pip install dist/dlc2kinamtics-0.0b1-py3-none-any.whl

setup.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
2-
Kinematik Package
3-
© A. & M. Mathis Labs
4-
https://github.com/MMathisLab/Kinematik/
2+
DLC2Kinematics Package
3+
© M. Mathis Labs
4+
https://github.com/AdaptiveMotorControlLab/DLC2Kinematics/
55
66
Please see AUTHORS for contributors.
7-
https://github.com/MMathisLab/Kinematik/blob/master/AUTHORS
7+
https://github.com/AdaptiveMotorControlLab/DLC2Kinematics/blob/master/AUTHORS
88
"""
99

1010
import setuptools
@@ -13,21 +13,21 @@
1313
long_description = fh.read()
1414

1515
setuptools.setup(
16-
name="kinematik",
17-
version="0.0b",
18-
author="Tanmay Nath, Kai Sandbrink, Alexander Mathis, Mackenzie Mathis",
16+
name="dlc2kinematics",
17+
version="0.0b1",
18+
author="Mackenzie Mathis & Lab",
1919
author_email="[email protected]",
20-
description="Library for kinematic analysis",
20+
description="a post-DeepLabCut module for kinematic analysis",
2121
long_description=long_description,
2222
long_description_content_type="text/markdown",
23-
url="https://github.com/MMathisLab/Kinematik/",
24-
install_requires=['h5py~=2.7','imageio==2.3.0','intel-openmp',
23+
url="https://github.com/AdaptiveMotorControlLab/DLC2Kinematics/",
24+
install_requires=['h5py>=2.7','imageio>=2.3.0','intel-openmp',
2525
'ipython~=6.0.0','ipython-genutils==0.2.0',
26-
'matplotlib==3.0.3','moviepy~=0.2.3.5','numpy==1.14.5','opencv-python~=3.4',
27-
'pandas==0.21.0','patsy','python-dateutil==2.7.3','pyyaml>=5.1','requests',
28-
'ruamel.yaml==0.15','setuptools','scikit-image~=0.14.0','scikit-learn~=0.19.2',
29-
'scikit-kinematics','scipy~=1.1.0','six==1.11.0','statsmodels==0.9.0','tables',
30-
'tqdm>4','wheel==0.31.1'],
26+
'matplotlib','moviepy','numpy','opencv-python',
27+
'pandas','patsy','python-dateutil','pyyaml>=5.1','requests',
28+
'ruamel.yaml>=0.15','setuptools','scikit-image','scikit-learn',
29+
'scikit-kinematics','scipy','six','statsmodels','tables',
30+
'tqdm>4','wheel'],
3131
packages=setuptools.find_packages(),
3232
include_package_data=True,
3333
classifiers=(

0 commit comments

Comments
 (0)