- Timestamp:
- Mar 25, 2017, 12:12:38 PM (8 years ago)
- Branches:
- sampler
- Children:
- b201912
- Parents:
- f8d96f1 (diff), 2a7bcaa (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
setup.py
rf8d96f1 rfbafd2c 3 3 import sys, os.path, glob 4 4 from setuptools import setup, Extension 5 from python.lib.moresetuptools import *5 from python.lib.moresetuptools import build_ext, CleanGenerated 6 6 # function to generate gen/*.{c,h} 7 from python.lib.gen_external import generate_external, header, output_path7 from this_version import get_aubio_version, get_aubio_pyversion 8 8 9 9 __version__ = get_aubio_pyversion() 10 __aubio_version__ = get_aubio_version() 10 11 11 12 include_dirs = [] 12 13 library_dirs = [] 13 define_macros = [('AUBIO_VERSION', '%s' % __ version__)]14 define_macros = [('AUBIO_VERSION', '%s' % __aubio_version__)] 14 15 extra_link_args = [] 15 16 16 17 include_dirs += [ 'python/ext' ] 17 include_dirs += [ output_path ] # aubio-generated.h18 18 try: 19 19 import numpy … … 58 58 packages = ['aubio'], 59 59 package_dir = {'aubio':'python/lib/aubio'}, 60 scripts = ['python/scripts/aubiocut'],61 60 ext_modules = [aubio_extension], 62 61 description = 'a collection of tools for music analysis', … … 76 75 'build_ext': build_ext, 77 76 }, 77 entry_points = { 78 'console_scripts': [ 79 'aubio = aubio.cmd:main', 80 'aubiocut = aubio.cut:main', 81 ], 82 }, 78 83 test_suite = 'nose2.collector.collector', 79 84 extras_require = {
Note: See TracChangeset
for help on using the changeset viewer.