Changeset 4ebd189
- Timestamp:
- Feb 9, 2013, 11:40:03 PM (12 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- cbc9765
- Parents:
- bc4c243
- git-author:
- Paul Brossier <piem@piem.org> (02/09/13 23:38:58)
- git-committer:
- Paul Brossier <piem@piem.org> (02/09/13 23:40:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
interfaces/python/setup.py
rbc4c243 r4ebd189 2 2 3 3 from distutils.core import setup, Extension 4 5 4 from generator import generate_object_files 6 7 5 import os.path 6 import numpy 8 7 9 8 library_dirs = ['../../build/src', '../../src/.libs'] … … 24 23 # generated files 25 24 ] + generate_object_files(), 26 include_dirs = include_dirs ,25 include_dirs = include_dirs + [ numpy.get_include() ], 27 26 library_dirs = library_dirs, 28 27 libraries=['aubio'])
Note: See TracChangeset
for help on using the changeset viewer.