source: interfaces/python/setup.py @ ae6e15c

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since ae6e15c was ae6e15c, checked in by Paul Brossier <piem@piem.org>, 15 years ago

interfaces/python: improve draft wrapper alpha_norm example, add some unit tests

  • Property mode set to 100644
File size: 354 bytes
Line 
1from distutils.core import setup, Extension
2
3setup(name="_aubio", version="1.0",
4      ext_modules = [ 
5        Extension("_aubio",
6            ["aubiomodule.c", "py-fvec.c"],
7            include_dirs=['../../build/default/src', '../../src' ],
8            library_dirs=['../../build/default/src', '../../src/.libs' ],
9            libraries=['aubio'])])
10
Note: See TracBrowser for help on using the repository browser.