Skip to content

Commit 8478f5c

Browse files
committed
0.1 release. Tested in DLC.
1 parent 0b6a12f commit 8478f5c

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,4 @@ ENV/
100100

101101
# mypy
102102
.mypy_cache/
103+
.DS_Store

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Here we provide utilities to convert [DeepLabCut (DLC)](https://github.com/DeepLabCut/DeepLabCut) output to/from [Neurodata Without Borders (NWB) format](https://www.nwb.org/nwb-neurophysiology/). This repository also elaborates a way for how pose estimation data should be represented in NWB.
44

5-
Specifically, this package allows you to convert DLC's predictions on videos (*.h5 files) into NWB format. This is best explained with an [example](https://github.com/DeepLabCut/DLC2NWB/# Example use case:)!
5+
Specifically, this package allows you to convert DLC's predictions on videos (*.h5 files) into NWB format. This is best explained with an example (see below).
66

77
# NWB pose ontology
88

dlc2nwb/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
from .utils import convert_h5_to_nwb, convert_nwb_to_h5
1+
from .utils import convert_h5_to_nwb, convert_nwb_to_h5
2+
from .version import __version__, VERSION

dlc2nwb/version.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
__version__ = "0.1"
2+
VERSION = __version__

reinstall.sh

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

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = DLC2NWB
3-
version = 0.0.1
3+
version = 0.1
44
author = DeepLabCut team
55
author_email = [email protected]
66
description = DeepLabCut<->NWB conversion utilities
@@ -23,4 +23,4 @@ install_requires =
2323
ndx-pose
2424

2525
[options.extras_require]
26-
test = pytest
26+
test = pytest

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setuptools.setup(
1010
name="dlc2nwb",
11-
version="0.0",
11+
version="0.1",
1212
author="A. & M. Mathis Labs",
1313
author_email="[email protected]",
1414
description="DeepLabCut <-> NWB conversion utilities",

0 commit comments

Comments
 (0)