Metadata-Version: 2.1
Name: pypitch
Version: 1.2
Summary: PyPitch analyses audio streams for pitch
Home-page: https://fofix.github.io
Author: FoFiX team
Author-email: fofix@perdu.fr
License: GPLv2+
Project-URL: Documentation, https://pypitch.readthedocs.io
Project-URL: Source Code, https://github.com/fofix/python-pypitch
Project-URL: Bug Tracker, https://github.com/fofix/python-pypitch/issues
Keywords: pitch audio
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Programming Language :: C++
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
Requires-Dist: Cython (>=0.27)
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Provides-Extra: tests
Requires-Dist: pytest (<5) ; (python_version < "3.4") and extra == 'tests'
Requires-Dist: numpy (<1.17) ; (python_version < "3.4") and extra == 'tests'
Requires-Dist: pytest ; (python_version > "3.4") and extra == 'tests'
Requires-Dist: numpy ; (python_version > "3.4") and extra == 'tests'

# PyPitch

[![Build Status](https://travis-ci.org/fofix/python-pypitch.svg?branch=master)](https://travis-ci.org/fofix/python-pypitch)
[![Build status](https://ci.appveyor.com/api/projects/status/0f6yb99cd37v6li6?svg=true)](https://ci.appveyor.com/project/Linkid/python-pypitch)
[![Documentation Status](https://readthedocs.org/projects/pypitch/badge/?version=latest)](http://pypitch.readthedocs.io/en/latest/?badge=latest)


PyPitch is a C++-extension in Python to analyse audio streams for pitch.


## Setup

Build the extension:

    $ python setup.py build_ext --inplace --force

Install it:

    $ python -m pip install .


## Usage

Import it:

    from pypitch import pypitch


## Doc

To build the html doc from source::

    $ python -m pip install -e .[docs]
    $ cd doc
    $ make html

or::

    $ python -m pip install -e .[docs]
    $ python setup.py build_sphinx


