Skip to content

Commit

Permalink
Add setup.py with versioneer
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Apr 8, 2020
1 parent 08b6590 commit 902f77b
Show file tree
Hide file tree
Showing 7 changed files with 2,388 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ndindex/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include versioneer.py
include ndindex/_version.py
4 changes: 4 additions & 0 deletions ndindex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
from .ndindex import (ndindex, Slice, Integer, Tuple)

__all__ = ['ndindex', 'Slice', 'Integer', 'Tuple']

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

0 comments on commit 902f77b

Please sign in to comment.