- Timestamp:
- Mar 8, 2013, 3:30:45 PM (12 years ago)
- 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:
- e6f7a4a
- Parents:
- 98c0f92
- Location:
- python
- Files:
-
- 1 added
- 2 deleted
- 3 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
python/MANIFEST.in
r98c0f92 r92c83ccc 1 1 include README COPYING VERSION 2 2 include ext/*.h 3 include lib/generator.py 4 include lib/gen_pyobject.py 3 5 include gen/aubio-generated.h 4 include generator.py5 include gen_pyobject.py6 include aubio/*.py7 include demos/*.py8 6 include tests/run_all_tests 9 7 include tests/*.py 8 include demos/*.py -
python/README
r98c0f92 r92c83ccc 13 13 You should be able to build the aubio python module out of the box: 14 14 15 $ ./build_osx15 $ python setup.py build 16 16 17 This should work on linux based systems as well as recent versions of OS X 18 (10.8.x). Let me know if you have issues on your platforms. 17 To use the python module without installing it, set PYTHONPATH: 18 19 $ export PYTHONPATH=$PYTHONPATH:$PWD/`ls -rtd build/lib.* | head -1`:$PWD/tests 20 21 And LD_LIBRARY_PATH: 22 23 $ export LD_LIBRARY_PATH=$PWD/../build/src 24 25 Or on macosx systems: 26 27 $ export DYLD_LIBRARY_PATH=$PWD/../build/src 28 29 The you should be able to run the tests: 30 31 $ ./tests/run_all_tests 32 33 And to try out the demos: 34 35 $ ./demos/demo_source.wav ~/test.wav 19 36 20 37 Additional tools -
python/setup.py
r98c0f92 r92c83ccc 29 29 30 30 if not os.path.isdir(output_path): 31 from generator import generate_object_files31 from lib.generator import generate_object_files 32 32 generated_object_files = generate_object_files(output_path) 33 33 # define include dirs
Note: See TracChangeset
for help on using the changeset viewer.