feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since 615ac7d was
615ac7d,
checked in by Paul Brossier <piem@piem.org>, 15 years ago
|
.
|
-
Property mode set to
100644
|
File size:
717 bytes
|
Line | |
---|
1 | from distutils.core import setup, Extension |
---|
2 | |
---|
3 | from os import listdir |
---|
4 | generated_files = listdir('generated') |
---|
5 | generated_files = ['generated/'+f for f in generated_files] |
---|
6 | |
---|
7 | setup(name="_aubio", version="1.0", |
---|
8 | ext_modules = [ |
---|
9 | Extension("_aubio", |
---|
10 | ["aubiomodule.c", |
---|
11 | "py-fvec.c", |
---|
12 | "py-cvec.c", |
---|
13 | "py-filter.c", |
---|
14 | # macroised |
---|
15 | "py-filterbank.c", |
---|
16 | "py-fft.c", |
---|
17 | "py-phasevoc.c", |
---|
18 | # generated files |
---|
19 | ] + generated_files, |
---|
20 | include_dirs=['../../build/default/src', '../../src', '.' ], |
---|
21 | library_dirs=['../../build/default/src', '../../src/.libs' ], |
---|
22 | libraries=['aubio'])]) |
---|
23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.