summaryrefslogtreecommitdiffstats
path: root/contrib/python/PyHamcrest/py3/hamcrest/__init__.py
blob: b40f70119c43e4d4fa35fc98d4a9d17e8bab63c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
from hamcrest.core import *
from hamcrest.library import *
from hamcrest import core, library
from hamcrest._version import version

__version__ = version
__author__ = "Chris Rose"
__copyright__ = "Copyright 2020 hamcrest.org"
__license__ = "BSD, see License.txt"

__all__ = []
__all__.extend(core.__all__)
__all__.extend(library.__all__)