source: setup.py @ 50117ac

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

setup.py: use 0.4.3a2

  • Property mode set to 100755
File size: 3.7 KB
Line 
1#! /usr/bin/env python
2
3import sys, os.path, glob
4from setuptools import setup, Extension
5from python.lib.moresetuptools import *
6# function to generate gen/*.{c,h}
7from python.lib.gen_external import generate_external, header, output_path
8
9# read from VERSION
10for l in open('VERSION').readlines(): exec (l.strip())
11
12if 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]))
19if 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
23
24include_dirs = []
25library_dirs = []
26define_macros = []
27extra_link_args = []
28
29include_dirs += [ 'python/ext' ]
30include_dirs += [ output_path ] # aubio-generated.h
31try:
32    import numpy
33    include_dirs += [ numpy.get_include() ]
34except ImportError:
35    pass
36
37if sys.platform.startswith('darwin'):
38    extra_link_args += ['-framework','CoreFoundation', '-framework','AudioToolbox']
39
40sources = glob.glob(os.path.join('python', 'ext', '*.c'))
41
42aubio_extension = Extension("aubio._aubio",
43    sources,
44    include_dirs = include_dirs,
45    library_dirs = library_dirs,
46    extra_link_args = extra_link_args,
47    define_macros = define_macros)
48
49if os.path.isfile('src/aubio.h'):
50    # if aubio headers are found in this directory
51    add_local_aubio_header(aubio_extension)
52    # was waf used to build the shared lib?
53    if os.path.isdir(os.path.join('build','src')):
54        # link against build/src/libaubio, built with waf
55        add_local_aubio_lib(aubio_extension)
56    else:
57        # add libaubio sources and look for optional deps with pkg-config
58        add_local_aubio_sources(aubio_extension)
59        __version__ += 'a2' # pypi version
60else:
61    # look for aubio headers and lib using pkg-config
62    add_system_aubio(aubio_extension)
63
64
65classifiers = [
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    ]
79
80from distutils.command.build_ext import build_ext as _build_ext
81class build_ext(_build_ext):
82
83    def build_extension(self, extension):
84        # generate files python/gen/*.c, python/gen/aubio-generated.h
85        extension.sources += generate_external(header, output_path, overwrite = False)
86        return _build_ext.build_extension(self, extension)
87
88distrib = setup(name='aubio',
89    version = __version__,
90    packages = ['aubio'],
91    package_dir = {'aubio':'python/lib/aubio'},
92    scripts = ['python/scripts/aubiocut'],
93    ext_modules = [aubio_extension],
94    description = 'a collection of tools for music analysis',
95    long_description = 'a collection of tools for music analysis',
96    license = 'GNU/GPL version 3',
97    author = 'Paul Brossier',
98    author_email = 'piem@aubio.org',
99    maintainer = 'Paul Brossier',
100    maintainer_email = 'piem@aubio.org',
101    url = 'http://aubio.org/',
102    platforms = 'any',
103    classifiers = classifiers,
104    install_requires = ['numpy'],
105    cmdclass = {
106        'clean': CleanGenerated,
107        'generate': GenerateCommand,
108        'build_ext': build_ext,
109        },
110    test_suite = 'nose2.collector.collector',
111    )
Note: See TracBrowser for help on using the repository browser.