source: interfaces/python/setup.py @ 0a6c211

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

added new python interface draft, work in progress

  • Property mode set to 100644
File size: 341 bytes
Line 
1from distutils.core import setup, Extension
2
3setup(name="_aubio", version="1.0",
4      ext_modules = [ 
5        Extension("_aubio",
6            ["aubiomodule.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.