Skip to content

Commit

Permalink
Merge 9c77464 into 0bcdbb7
Browse files Browse the repository at this point in the history
  • Loading branch information
hbarthels committed Apr 29, 2019
2 parents 0bcdbb7 + 9c77464 commit 95f679f
Show file tree
Hide file tree
Showing 7 changed files with 2,356 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Expand Up @@ -3,3 +3,4 @@
*.rst text
*.cfg text
*.yml text
matchpy/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include versioneer.py
include matchpy/_version.py
6 changes: 3 additions & 3 deletions matchpy/__init__.py
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-
"""Contains all the necessary classes and functions for pattern matching."""

import pkg_resources

# pylint: disable=wildcard-import
from . import expressions
from . import functions
Expand All @@ -16,4 +14,6 @@

__all__ = expressions.__all__ + functions.__all__ + utils.__all__ + matching.__all__

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

0 comments on commit 95f679f

Please sign in to comment.