Skip to content

Commit

Permalink
Implement versioneer according to issue #7
Browse files Browse the repository at this point in the history
  • Loading branch information
mmhs013 committed Jul 21, 2019
1 parent d53d62c commit 95bdc72
Show file tree
Hide file tree
Showing 7 changed files with 2,359 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pymannkendall/_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 pymannkendall/_version.py
7 changes: 5 additions & 2 deletions pymannkendall/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from .pymannkendall import sens_slope, seasonal_sens_slope, original_test, hamed_rao_modification_test, yue_wang_modification_test, pre_whitening_modification_test, trend_free_pre_whitening_modification_test, multivariate_test, seasonal_test, regional_test, correlated_multivariate_test, correlated_seasonal_test, partial_test

__version__ = "1.0"
__all__ = [sens_slope, seasonal_sens_slope, original_test, hamed_rao_modification_test, yue_wang_modification_test, pre_whitening_modification_test, trend_free_pre_whitening_modification_test, multivariate_test, seasonal_test, regional_test, correlated_multivariate_test, correlated_seasonal_test, partial_test]
__all__ = [sens_slope, seasonal_sens_slope, original_test, hamed_rao_modification_test, yue_wang_modification_test, pre_whitening_modification_test, trend_free_pre_whitening_modification_test, multivariate_test, seasonal_test, regional_test, correlated_multivariate_test, correlated_seasonal_test, partial_test]

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

0 comments on commit 95bdc72

Please sign in to comment.