source: interfaces/python/setup.py @ b70c6f1

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

setup.py: update path

  • Property mode set to 100644
File size: 809 bytes
Line 
1from distutils.core import setup, Extension
2
3from os import listdir
4generated_files = listdir('generated')
5generated_files = filter(lambda x: x.endswith('.c'), generated_files)
6generated_files = ['generated/'+f for f in generated_files]
7
8setup(name="_aubio", version="1.0",
9      ext_modules = [ 
10        Extension("_aubio",
11            ["aubiomodule.c",
12            "aubioproxy.c",
13            "py-cvec.c",
14            # example without macro
15            "py-filter.c",
16            # macroised
17            "py-filterbank.c",
18            "py-fft.c",
19            "py-phasevoc.c",
20            # generated files
21            ] + generated_files,
22            include_dirs=['../../build/src', '../../src', '.' ],
23            library_dirs=['../../build/src', '../../src/.libs' ],
24            libraries=['aubio'])])
25
Note: See TracBrowser for help on using the repository browser.