diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2015-09-14 23:08:02 -0400 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2015-09-14 23:08:02 -0400 |
| commit | ab0b1f3cefedb35327a19ec1b6afd560bfdf802d (patch) | |
| tree | b777f3e2c0ac0e712d8c5faab5107b1d236e2c3a /ic_experiments/setup3.py | |
| parent | 960676226862d2d68c7a9c04c56d4f8157803025 (diff) | |
| download | criminal_cascades-ab0b1f3cefedb35327a19ec1b6afd560bfdf802d.tar.gz | |
Import supplements and repo reorganization
Diffstat (limited to 'ic_experiments/setup3.py')
| -rw-r--r-- | ic_experiments/setup3.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ic_experiments/setup3.py b/ic_experiments/setup3.py new file mode 100644 index 0000000..f89759b --- /dev/null +++ b/ic_experiments/setup3.py @@ -0,0 +1,12 @@ +# compile with: python setup.py build_ext --inplace + +from distutils.core import setup +from Cython.Build import cythonize +import numpy + +setup( + ext_modules = cythonize("ml3.pyx"), + include_dirs=[numpy.get_include()] + +) + |
