Changeset 25c9f9a


Ignore:
Timestamp:
Feb 10, 2013, 2:10:12 AM (11 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
927f630
Parents:
b554e41
Message:

move new python module to the top

Location:
python
Files:
43 moved

Legend:

Unmodified
Added
Removed
  • python/generator.py

    rb554e41 r25c9f9a  
    88def get_cpp_objects():
    99
    10   cpp_output = [l.strip() for l in os.popen('cpp -DAUBIO_UNSTABLE=1 -I../../build/src ../../src/aubio.h').readlines()]
     10  cpp_output = [l.strip() for l in os.popen('cpp -DAUBIO_UNSTABLE=1 -I../build/src ../src/aubio.h').readlines()]
    1111
    1212  cpp_output = filter(lambda y: len(y) > 1, cpp_output)
  • python/setup.py

    rb554e41 r25c9f9a  
    66import numpy
    77
    8 library_dirs = ['../../build/src', '../../src/.libs']
    9 include_dirs = ['../../build/src', '../../src', '.' ]
     8library_dirs = ['../build/src', '../src/.libs']
     9include_dirs = ['../build/src', '../src', '.' ]
    1010library_dirs = filter (lambda x: os.path.isdir(x), library_dirs)
    1111include_dirs = filter (lambda x: os.path.isdir(x), include_dirs)
Note: See TracChangeset for help on using the changeset viewer.