Skip to content

Commit

Permalink
Start using versioneer
Browse files Browse the repository at this point in the history
Closes #125
  • Loading branch information
mwcraig committed May 27, 2016
1 parent 05d5a08 commit c47a6cd
Show file tree
Hide file tree
Showing 7 changed files with 2,277 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
reducer/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include README.rst CHANGES.rst CONTRIBUTORS.rst
recursive-include reducer reducer-template.ipynb *.tbz2
include accordion_replacement/accordion_patch.js
include versioneer.py
include reducer/_version.py
6 changes: 4 additions & 2 deletions reducer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# keep this at the top -- name is needed for imports to succeed
NOTEBOOK_TEMPLATE_NAME = 'reducer-template.ipynb'

__version__ = '0.3.dev'

from .core import *

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions

0 comments on commit c47a6cd

Please sign in to comment.