Skip to content

Commit

Permalink
added versioneer
Browse files Browse the repository at this point in the history
  • Loading branch information
leifwalsh committed Aug 27, 2017
1 parent e100046 commit 83386d4
Show file tree
Hide file tree
Showing 8 changed files with 2,359 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
perfume/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ recursive-exclude * __pycache__
recursive-exclude * *.py[co]

recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
include versioneer.py
include perfume/_version.py
6 changes: 5 additions & 1 deletion perfume/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
"""Top-level package for perfume."""

from .perfume import bench # noqa: F401
from ._version import get_versions

__version__ = get_versions()['version']
del get_versions

__author__ = """Leif Walsh"""
__email__ = 'leif.walsh@gmail.com'
__version__ = '0.1.0'
__all__ = [
'bench'
]

0 comments on commit 83386d4

Please sign in to comment.