Metadata-Version: 2.1
Name: pytest-cython
Version: 0.1.1
Summary: A plugin for testing Cython extension modules
Home-page: https://github.com/lgpage/pytest-cython
Author: Logan Page
Author-email: page.lg@gmail.com
License: MIT
Description: Overview
        ========
        
        .. start-badges
        
        .. list-table::
            :stub-columns: 1
        
            * - docs
              - |docs|
            * - tests
              - |travis| |appveyor| |requires|
            * - package
              - |version| |downloads| |wheel| |supported-versions| |supported-implementations|
        
        .. |docs| image:: https://readthedocs.org/projects/pytest-cython/badge/?style=flat
            :target: https://readthedocs.org/projects/pytest-cython
            :alt: Documentation Status
        
        .. |travis| image:: https://api.travis-ci.org/lgpage/pytest-cython.svg?branch=master
            :alt: Travis-CI Build Status
            :target: https://travis-ci.org/lgpage/pytest-cython
        
        .. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/lgpage/pytest-cython?branch=master&svg=true
            :alt: AppVeyor Build Status
            :target: https://ci.appveyor.com/project/lgpage/pytest-cython
        
        .. |requires| image:: https://requires.io/github/lgpage/pytest-cython/requirements.svg?branch=master
            :alt: Requirements Status
            :target: https://requires.io/github/lgpage/pytest-cython/requirements/?branch=master
        
        .. |version| image:: https://img.shields.io/pypi/v/pytest-cython.svg?style=flat
            :alt: PyPI Package latest release
            :target: https://pypi.org/project/pytest-cython
        
        .. |downloads| image:: https://img.shields.io/pypi/dm/pytest-cython.svg?style=flat
            :alt: PyPI Package monthly downloads
            :target: https://pypi.org/project/pytest-cython
        
        .. |wheel| image:: https://img.shields.io/pypi/wheel/pytest-cython.svg?style=flat
            :alt: PyPI Wheel
            :target: https://pypi.org/project/pytest-cython
        
        .. |supported-versions| image:: https://img.shields.io/pypi/pyversions/pytest-cython.svg?style=flat
            :alt: Supported versions
            :target: https://pypi.org/project/pytest-cython
        
        .. |supported-implementations| image:: https://img.shields.io/pypi/implementation/pytest-cython.svg?style=flat
            :alt: Supported implementations
            :target: https://pypi.org/project/pytest-cython
        
        .. end-badges
        
        This `Pytest`_ plugin allows for the doctesting of C extension modules
        for Python, specifically created through `Cython`_.
        
        
        Installation
        ============
        
        You can install "pytest-cython" via `pip`_ from `PyPI`_::
        
            pip install pytest-cython
        
        
        Usage
        =====
        
        Basic usage::
        
            py.test --doctest-cython
        
        Note
        ----
        
        * It is assumed that the C extension modules have been build inplace before
          running `py.test` and there is a matching Cython `.pyx` file
        * The `embedsignature` `Cython compiler directive`_ must be set to `True`
        
        
        Contributing
        ============
        Contributions are very welcome. Tests can be run with `tox`_::
        
            tox
        
        
        License
        =======
        
        * Free software: MIT license
        
        Distributed under the terms of the `MIT`_ license, "pytest-cython" is free and
        open source software
        
        
        Issues
        ======
        
        If you encounter any problems, please `file an issue`_ along with a detailed
        description.
        
        
        Acknowledgements
        ================
        
        This `Pytest`_ plugin was generated with `Cookiecutter`_ along with
        `@hackebrot`_'s `Cookiecutter-pytest-plugin`_ and `@ionelmc`_'s
        `cookiecutter-pylibrary`_ templates.
        
        
        .. _`Cookiecutter`: https://github.com/cookiecutter/cookiecutter
        .. _`@hackebrot`: https://github.com/hackebrot
        .. _`@ionelmc`: https://github.com/ionelmc
        .. _`MIT`: https://opensource.org/licenses/MIT
        .. _`BSD-3`: https://opensource.org/licenses/BSD-3-Clause
        .. _`GNU GPL v3.0`: https://www.gnu.org/licenses/gpl-3.0.txt
        .. _`Apache Software License 2.0`: https://www.apache.org/licenses/LICENSE-2.0
        .. _`cookiecutter-pytest-plugin`: https://github.com/pytest-dev/cookiecutter-pytest-plugin
        .. _`cookiecutter-pylibrary`: https://github.com/ionelmc/cookiecutter-pylibrary
        .. _`file an issue`: https://github.com/lgpage/pytest-cython/issues
        .. _`pytest`: https://github.com/pytest-dev/pytest
        .. _`tox`: https://tox.readthedocs.io/en/latest/
        .. _`pip`: https://pypi.org/project/pip/
        .. _`PyPI`: https://pypi.org
        .. _`Cython`: https://cython.org/
        .. _`Cython compiler directive`: https://docs.cython.org/en/latest/src/reference/compilation.html#compiler-directives
        
Keywords: pytest,py.test,cython,doctest
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
Description-Content-Type: text/x-rst
