diff options
| author | Guillaume Horel <guillaume.horel@serenitascapital.com> | 2016-07-12 15:37:45 -0400 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@serenitascapital.com> | 2016-07-12 15:37:45 -0400 |
| commit | 10e9385b9dce32513d865f75003c0eccff75faa0 (patch) | |
| tree | 6706ae2e1c7f5efe5ba4dc44a2e15eb927974614 /setup.py | |
| parent | 1f1d6128c664ee4e79ad01bdd914583d905eb209 (diff) | |
| download | pyisda-10e9385b9dce32513d865f75003c0eccff75faa0.tar.gz | |
reorganize project
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2,8 +2,11 @@ from distutils.core import setup from distutils.extension import Extension from Cython.Build import cythonize -extensions = Extension("*", ["*.pyx"], +extensions = Extension("*", ["pyisda/*.pyx"], libraries = ["cds"]) setup( name = "pyisda", - ext_modules = cythonize(extensions)) + version = '0.1', + author = 'Guillaume Horel', + ext_modules = cythonize(extensions, nthreads = 4), + packages = ['pyisda']) |
