source: python/setup.py @ d27634d

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since d27634d was d27634d, checked in by Paul Brossier <piem@piem.org>, 10 years ago

python/ext/py-source.c: not generated, modified init to get samplerate from aubio_source_t

Signed-off-by: Paul Brossier <piem@piem.org>

  • Property mode set to 100755
File size: 2.8 KB
RevLine 
[c71e405]1#! /usr/bin/python
2
[0a6c211]3from distutils.core import setup, Extension
[4d3b573]4
[14fb15f]5import sys
[012b324]6import os.path
[4ebd189]7import numpy
[012b324]8
[945e26d]9# read from VERSION
[ad5203c]10for l in open('VERSION').readlines(): exec (l.strip())
[945e26d]11__version__ = '.'.join \
12        ([str(x) for x in [AUBIO_MAJOR_VERSION, AUBIO_MINOR_VERSION, AUBIO_PATCH_VERSION]]) \
13        + AUBIO_VERSION_STATUS
14
[4d3b573]15
[41399bd]16include_dirs = []
17library_dirs = []
18define_macros = []
[4d3b573]19extra_link_args = []
[012b324]20
[41399bd]21include_dirs += ['ext']
22include_dirs += [ numpy.get_include() ]
[ad5203c]23
[4d3b573]24if sys.platform.startswith('darwin'):
25    extra_link_args += ['-framework','CoreFoundation', '-framework','AudioToolbox']
26
[ad5203c]27output_path = 'gen'
[41399bd]28generated_object_files = []
[ad5203c]29
30if not os.path.isdir(output_path):
[92c83ccc]31    from lib.generator import generate_object_files
[ad5203c]32    generated_object_files = generate_object_files(output_path)
[41399bd]33    # define include dirs
[ad5203c]34else:
35    import glob
36    generated_object_files = glob.glob(os.path.join(output_path, '*.c'))
[41399bd]37include_dirs += [output_path]
38
39if os.path.isfile('../src/aubio.h'):
40    define_macros += [('USE_LOCAL_AUBIO', 1)]
41    include_dirs += ['../src'] # aubio.h
42    include_dirs += ['../build/src'] # config.h
43    library_dirs += ['../build/src']
[ad5203c]44
[164980f]45aubio_extension = Extension("aubio._aubio", [
[4d3b573]46    "ext/aubiomodule.c",
47    "ext/aubioproxy.c",
48    "ext/ufuncs.c",
49    "ext/py-cvec.c",
50    # example without macro
51    "ext/py-filter.c",
52    # macroised
53    "ext/py-filterbank.c",
54    "ext/py-fft.c",
55    "ext/py-phasevoc.c",
[d27634d]56    "ext/py-source.c",
[4d3b573]57    # generated files
58    ] + generated_object_files,
59    include_dirs = include_dirs,
60    library_dirs = library_dirs,
61    extra_link_args = extra_link_args,
62    define_macros = define_macros,
63    libraries=['aubio'])
[14fb15f]64
[945e26d]65classifiers = [
[4d3b573]66    'Development Status :: 4 - Beta',
67    'Environment :: Console',
68    'Intended Audience :: Science/Research',
69    'Topic :: Software Development :: Libraries',
70    'Topic :: Multimedia :: Sound/Audio :: Analysis',
71    'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis',
72    'Operating System :: POSIX',
73    'Operating System :: MacOS :: MacOS X',
74    'Operating System :: Microsoft :: Windows',
75    'Programming Language :: C',
76    'Programming Language :: Python',
77    'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
78    ]
[012b324]79
[945e26d]80distrib = setup(name='aubio',
[4d3b573]81    version = __version__,
82    packages = ['aubio'],
[9582713]83    package_dir = {'aubio':'lib/aubio'},
84    scripts = ['scripts/aubiocut'],
[4d3b573]85    ext_modules = [aubio_extension],
86    description = 'interface to the aubio library',
87    long_description = 'interface to the aubio library',
88    license = 'GNU/GPL version 3',
89    author = 'Paul Brossier',
90    author_email = 'piem@aubio.org',
91    maintainer = 'Paul Brossier',
92    maintainer_email = 'piem@aubio.org',
93    url = 'http://aubio.org/',
94    platforms = 'any',
95    classifiers = classifiers,
96    )
Note: See TracBrowser for help on using the repository browser.