- Timestamp:
- May 15, 2016, 3:09:56 PM (9 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:
- 89b04e8
- Parents:
- bce913a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
setup.py
rbce913a r5f6324e 2 2 3 3 import sys, os.path, glob 4 import numpy5 4 from setuptools import setup, Extension 6 5 from python.lib.moresetuptools import * … … 21 20 include_dirs += [ 'python/ext' ] 22 21 include_dirs += [ output_path ] # aubio-generated.h 23 include_dirs += [ numpy.get_include() ] 22 try: 23 import numpy 24 include_dirs += [ numpy.get_include() ] 25 except ImportError: 26 pass 24 27 25 28 if sys.platform.startswith('darwin'):
Note: See TracChangeset
for help on using the changeset viewer.