Metadata-Version: 2.0
Name: easycython
Version: 1.0.2
Summary: Convert .pyx to (.pyd|.so) very easily.
Home-page: https://github.com/cjrh/easycython
Author: Caleb Hattingh
Author-email: caleb.hattingh@gmail.com
License: MIT
Keywords: cython
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Cython
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: cython
Requires-Dist: numpy

==========    
easycython
==========    

`easycython.py` is a script that will attempt to
automatically convert one or more `.pyx` files into
the corresponding compiled `.pyd|.so` binary modules
files. Example::

    $ easycython myext.pyx

Why?
====

Because writing a `setup.py` each time is painful.


