source: setup.py @ f49cf4c

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since f49cf4c was 0561c54, checked in by Paul Brossier <piem@piem.org>, 7 years ago

Merge branch 'aubiocmd'

  • Property mode set to 100755
File size: 2.6 KB
Line 
1#! /usr/bin/env python
2
3import sys, os.path, glob
4from setuptools import setup, Extension
5from python.lib.moresetuptools import build_ext, CleanGenerated
6# function to generate gen/*.{c,h}
7from this_version import get_aubio_version, get_aubio_pyversion
8
9__version__ = get_aubio_pyversion()
10__aubio_version__ = get_aubio_version()
11
12include_dirs = []
13library_dirs = []
14define_macros = [('AUBIO_VERSION', '%s' % __aubio_version__)]
15extra_link_args = []
16
17include_dirs += [ 'python/ext' ]
18try:
19    import numpy
20    include_dirs += [ numpy.get_include() ]
21except ImportError:
22    pass
23
24if sys.platform.startswith('darwin'):
25    extra_link_args += ['-framework','CoreFoundation', '-framework','AudioToolbox']
26
27sources = sorted(glob.glob(os.path.join('python', 'ext', '*.c')))
28
29aubio_extension = Extension("aubio._aubio",
30    sources,
31    include_dirs = include_dirs,
32    library_dirs = library_dirs,
33    extra_link_args = extra_link_args,
34    define_macros = define_macros)
35
36if os.path.isfile('src/aubio.h'):
37    if not os.path.isdir(os.path.join('build','src')):
38        pass
39        #__version__ += 'a2' # python only version
40
41classifiers = [
42    'Development Status :: 4 - Beta',
43    'Environment :: Console',
44    'Intended Audience :: Science/Research',
45    'Topic :: Software Development :: Libraries',
46    'Topic :: Multimedia :: Sound/Audio :: Analysis',
47    'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis',
48    'Operating System :: POSIX',
49    'Operating System :: MacOS :: MacOS X',
50    'Operating System :: Microsoft :: Windows',
51    'Programming Language :: C',
52    'Programming Language :: Python',
53    'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
54    ]
55
56distrib = setup(name='aubio',
57    version = __version__,
58    packages = ['aubio'],
59    package_dir = {'aubio':'python/lib/aubio'},
60    ext_modules = [aubio_extension],
61    description = 'a collection of tools for music analysis',
62    long_description = 'a collection of tools for music analysis',
63    license = 'GNU/GPL version 3',
64    author = 'Paul Brossier',
65    author_email = 'piem@aubio.org',
66    maintainer = 'Paul Brossier',
67    maintainer_email = 'piem@aubio.org',
68    url = 'https://aubio.org/',
69    platforms = 'any',
70    classifiers = classifiers,
71    install_requires = ['numpy'],
72    setup_requires = ['numpy'],
73    cmdclass = {
74        'clean': CleanGenerated,
75        'build_ext': build_ext,
76        },
77    entry_points = {
78        'console_scripts': [
79            'aubio = aubio.cmd:main',
80            'aubiocut = aubio.cut:main',
81        ],
82    },
83    test_suite = 'nose2.collector.collector',
84    extras_require = {
85        'tests': ['numpy'],
86        },
87    )
Note: See TracBrowser for help on using the repository browser.