- Timestamp:
- Jan 21, 2017, 8:37:56 PM (8 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, sampler, yinfft+
- Children:
- 227aa1c
- Parents:
- 8f0db97
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
setup.py
r8f0db97 rf432bb1 7 7 from python.lib.gen_external import generate_external, header, output_path 8 8 9 # read from VERSION 10 for l in open('VERSION').readlines(): exec (l.strip()) 11 12 if AUBIO_MAJOR_VERSION is None or AUBIO_MINOR_VERSION is None \ 13 or AUBIO_PATCH_VERSION is None: 14 raise SystemError("Failed parsing VERSION file.") 15 16 __version__ = '.'.join(map(str, [AUBIO_MAJOR_VERSION, 17 AUBIO_MINOR_VERSION, 18 AUBIO_PATCH_VERSION])) 19 if AUBIO_VERSION_STATUS is not None: 20 if AUBIO_VERSION_STATUS.startswith('~'): 21 AUBIO_VERSION_STATUS = AUBIO_VERSION_STATUS[1:] 22 #__version__ += AUBIO_VERSION_STATUS 9 __version__ = get_aubio_pyversion() 23 10 24 11 include_dirs = []
Note: See TracChangeset
for help on using the changeset viewer.