diff options
| author | Guillaume Horel <guillaume.horel@serenitascapital.com> | 2016-06-29 12:25:46 -0400 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@serenitascapital.com> | 2016-06-29 12:25:46 -0400 |
| commit | c4b8148b8419ca1e281a8e69aeea578e057c4c4d (patch) | |
| tree | 461e6522891fdffe4a5075ed7d21b9d9b7065214 /setup.py | |
| parent | ed43f3874ccbe7782595b225821230cfca02ceb7 (diff) | |
| download | pyisda-c4b8148b8419ca1e281a8e69aeea578e057c4c4d.tar.gz | |
work in progress
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,6 +1,9 @@ from distutils.core import setup +from distutils.extension import Extension from Cython.Build import cythonize +extensions = Extension("*", ["*.pyx"], + libraries = ["cds"]) setup( - ext_modules = cythonize("*.pyx") -) + name = "pyisda", + ext_modules = cythonize(extensions)) |
