- Timestamp:
- May 15, 2016, 10:51:35 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:
- 1772630
- Parents:
- ca89d9f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
setup.py
rca89d9f rb1d37c0 54 54 55 55 56 # generate files if they don't exit57 aubio_extension.sources += generate_external(header, output_path, overwrite = False)58 59 56 classifiers = [ 60 57 'Development Status :: 4 - Beta', … … 71 68 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 72 69 ] 70 71 from distutils.command.build_ext import build_ext as _build_ext 72 class build_ext(_build_ext): 73 74 def build_extension(self, extension): 75 # generate files python/gen/*.c, python/gen/aubio-generated.h 76 extension.sources += generate_external(header, output_path, overwrite = False) 77 return _build_ext.build_extension(self, extension) 73 78 74 79 distrib = setup(name='aubio', … … 92 97 'clean': CleanGenerated, 93 98 'generate': GenerateCommand, 99 'build_ext': build_ext, 94 100 }, 95 101 test_suite = 'nose2.collector.collector',
Note: See TracChangeset
for help on using the changeset viewer.