move new python module to the top
authorPaul Brossier <piem@piem.org>
Sun, 10 Feb 2013 01:10:12 +0000 (20:10 -0500)
committerPaul Brossier <piem@piem.org>
Sun, 10 Feb 2013 01:10:12 +0000 (20:10 -0500)
43 files changed:
python/README.md [moved from interfaces/python/README.md with 100% similarity]
python/a_weighting_test_simple.expected [moved from interfaces/python/a_weighting_test_simple.expected with 100% similarity]
python/aubio-types.h [moved from interfaces/python/aubio-types.h with 100% similarity]
python/aubio/__init__.py [moved from interfaces/python/aubio/__init__.py with 100% similarity]
python/aubioinput.py [moved from interfaces/python/aubioinput.py with 100% similarity]
python/aubiomodule.c [moved from interfaces/python/aubiomodule.c with 100% similarity]
python/aubioproxy.c [moved from interfaces/python/aubioproxy.c with 100% similarity]
python/aubiowraphell.h [moved from interfaces/python/aubiowraphell.h with 100% similarity]
python/build_linux [moved from interfaces/python/build_linux with 100% similarity]
python/build_osx [moved from interfaces/python/build_osx with 100% similarity]
python/c_weighting_test_simple.expected [moved from interfaces/python/c_weighting_test_simple.expected with 100% similarity]
python/demo_beats_and_tempo.py [moved from interfaces/python/demo_beats_and_tempo.py with 100% similarity]
python/demo_filterbank_slaney.py [moved from interfaces/python/demo_filterbank_slaney.py with 100% similarity]
python/demo_filterbank_triangle_bands.py [moved from interfaces/python/demo_filterbank_triangle_bands.py with 100% similarity]
python/demo_onset_sinusoid.py [moved from interfaces/python/demo_onset_sinusoid.py with 100% similarity]
python/demo_pitch_sinusoid.py [moved from interfaces/python/demo_pitch_sinusoid.py with 100% similarity]
python/demo_simple_robot_voice.py [moved from interfaces/python/demo_simple_robot_voice.py with 100% similarity]
python/demo_sink.py [moved from interfaces/python/demo_sink.py with 100% similarity]
python/demo_source.py [moved from interfaces/python/demo_source.py with 100% similarity]
python/demo_spectrogram.py [moved from interfaces/python/demo_spectrogram.py with 100% similarity]
python/demo_tss.py [moved from interfaces/python/demo_tss.py with 100% similarity]
python/gen_pyobject.py [moved from interfaces/python/gen_pyobject.py with 100% similarity]
python/generator.py [moved from interfaces/python/generator.py with 99% similarity]
python/py-cvec.c [moved from interfaces/python/py-cvec.c with 100% similarity]
python/py-fft.c [moved from interfaces/python/py-fft.c with 100% similarity]
python/py-filter.c [moved from interfaces/python/py-filter.c with 100% similarity]
python/py-filterbank.c [moved from interfaces/python/py-filterbank.c with 100% similarity]
python/py-phasevoc.c [moved from interfaces/python/py-phasevoc.c with 100% similarity]
python/run_all_tests [moved from interfaces/python/run_all_tests with 100% similarity]
python/setup.py [moved from interfaces/python/setup.py with 91% similarity]
python/test_aubio.py [moved from interfaces/python/test_aubio.py with 100% similarity]
python/test_cvec.py [moved from interfaces/python/test_cvec.py with 100% similarity]
python/test_fft.py [moved from interfaces/python/test_fft.py with 100% similarity]
python/test_filter.py [moved from interfaces/python/test_filter.py with 100% similarity]
python/test_filterbank.py [moved from interfaces/python/test_filterbank.py with 100% similarity]
python/test_filterbank_mel.py [moved from interfaces/python/test_filterbank_mel.py with 100% similarity]
python/test_fvec.py [moved from interfaces/python/test_fvec.py with 100% similarity]
python/test_onset.py [moved from interfaces/python/test_onset.py with 100% similarity]
python/test_peakpicker.py [moved from interfaces/python/test_peakpicker.py with 100% similarity]
python/test_phasevoc.py [moved from interfaces/python/test_phasevoc.py with 100% similarity]
python/test_pitch.py [moved from interfaces/python/test_pitch.py with 100% similarity]
python/test_source.py [moved from interfaces/python/test_source.py with 100% similarity]
python/test_specdesc.py [moved from interfaces/python/test_specdesc.py with 100% similarity]

similarity index 100%
rename from interfaces/python/README.md
rename to python/README.md
similarity index 100%
rename from interfaces/python/build_osx
rename to python/build_osx
similarity index 99%
rename from interfaces/python/generator.py
rename to python/generator.py
index 0bbd20e4a66c478ebf739607045db6710298ff5c..6e904a1e874af5ac5ecef35c594dc53cd002d1e3 100755 (executable)
@@ -7,7 +7,7 @@ from gen_pyobject import write_msg, gen_new_init, gen_do, gen_members, gen_metho
 
 def get_cpp_objects():
 
-  cpp_output = [l.strip() for l in os.popen('cpp -DAUBIO_UNSTABLE=1 -I../../build/src ../../src/aubio.h').readlines()]
+  cpp_output = [l.strip() for l in os.popen('cpp -DAUBIO_UNSTABLE=1 -I../build/src ../src/aubio.h').readlines()]
 
   cpp_output = filter(lambda y: len(y) > 1, cpp_output)
   cpp_output = filter(lambda y: not y.startswith('#'), cpp_output)
similarity index 100%
rename from interfaces/python/py-cvec.c
rename to python/py-cvec.c
similarity index 100%
rename from interfaces/python/py-fft.c
rename to python/py-fft.c
similarity index 91%
rename from interfaces/python/setup.py
rename to python/setup.py
index ef05441d25b73d5af2a5eca0215a2e522f0a0a71..f6f88a1e9f00c88d5896caa129655ee95de7406f 100755 (executable)
@@ -5,8 +5,8 @@ from generator import generate_object_files
 import os.path
 import numpy
 
-library_dirs = ['../../build/src', '../../src/.libs']
-include_dirs = ['../../build/src', '../../src', '.' ]
+library_dirs = ['../build/src', '../src/.libs']
+include_dirs = ['../build/src', '../src', '.' ]
 library_dirs = filter (lambda x: os.path.isdir(x), library_dirs)
 include_dirs = filter (lambda x: os.path.isdir(x), include_dirs)