Metadata-Version: 1.1
Name: hypothesis-numpy
Version: 0.6.0
Summary: Adds support for generating datetime to Hypothesis
Home-page: https://github.com/DRMacIver/hypothesis
Author: David R. MacIver
Author-email: david@drmaciver.com
License: MPL v2
Description: This adds support for numpy types to `Hypothesis <https://github.com/DRMacIver/hypothesis>`_.
        
        This should be considered more of a prototype than a serious piece of
        production software. Usage is as follows:
        
        .. code:: python
        
            >>> from hypothesis import find
            >>> from hypothesis.extra.numpy import arrays
            >>> find(arrays(float, 2), lambda x: x.sum() >= 1)
            array([ 1.,  0.])
            >>> find(arrays(bool, (2, 2)), lambda x: x.any())
            array([[False, False],
                   [ True, False]], dtype=bool)
            >>> find(arrays('uint64', (2, 2)), lambda x: x.any())
            array([[1, 0],
                   [0, 0]], dtype=uint64)
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Testing
