source: interfaces/python/setup.py @ 146280a

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 146280a 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
RevLine 
[0a6c211]1from distutils.core import setup, Extension
2
3setup(name="_aubio", version="1.0",
4      ext_modules = [ 
5        Extension("_aubio",
[ae6e15c]6            ["aubiomodule.c", "py-fvec.c"],
[0a6c211]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.