summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 800e1d74d22c4207401ce71fd89aaccc23b4b887 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
from distutils.extension import Extension

from Cython.Distutils import build_ext

setup(
    name='test_Cython',
    version="0.0.1",
    license='BSD',
    platforms=['any'],
    author='Matej Cepl',
    author_email='mcepl@cepl.eu',
    cmdclass={'build_ext': build_ext},
    ext_modules = [
        Extension("randomize",
                  ["randomize.pyx"],
                  libraries=["ssl", "crypto"])
    ]
)