Changes in setup.py [38f3d04:6264d30]
Legend:
- Unmodified
- Added
- Removed
-
setup.py
r38f3d04 r6264d30 3 3 import sys, os.path, glob 4 4 from setuptools import setup, Extension 5 from python.lib.moresetuptools import build_ext, CleanGenerated5 from python.lib.moresetuptools import * 6 6 # function to generate gen/*.{c,h} 7 from this_version import get_aubio_version, get_aubio_pyversion7 from python.lib.gen_external import generate_external, header, output_path 8 8 9 9 __version__ = get_aubio_pyversion() 10 __aubio_version__ = get_aubio_version()11 10 12 11 include_dirs = [] 13 12 library_dirs = [] 14 define_macros = [('AUBIO_VERSION', '%s' % __ aubio_version__)]13 define_macros = [('AUBIO_VERSION', '%s' % __version__)] 15 14 extra_link_args = [] 16 15 17 16 include_dirs += [ 'python/ext' ] 17 include_dirs += [ output_path ] # aubio-generated.h 18 18 try: 19 19 import numpy
Note: See TracChangeset
for help on using the changeset viewer.