summaryrefslogblamecommitdiffstats
path: root/setup.py
blob: 7b3ba28e9e86e3ed55956a22e2fa847c0cbabb1c (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                  





                                 

                                             
from distutils.core import setup
from Cython.Build import cythonize

setup(
    name='test_Cython',
    version="0.0.1",
    license='BSD',
    platforms=['any'],
    author='Matej Cepl',
    author_email='mcepl@cepl.eu',
    ext_modules = cythonize("helloworld.pyx")
)