1 | #! /usr/bin/env python |
---|
2 | |
---|
3 | import sys |
---|
4 | import os.path |
---|
5 | import glob |
---|
6 | from setuptools import setup, Extension |
---|
7 | |
---|
8 | # add ./python/lib to current path |
---|
9 | sys.path.append(os.path.join('python', 'lib')) # noqa |
---|
10 | from moresetuptools import build_ext, CleanGenerated |
---|
11 | |
---|
12 | # function to generate gen/*.{c,h} |
---|
13 | from this_version import get_aubio_version, get_aubio_pyversion |
---|
14 | |
---|
15 | __version__ = get_aubio_pyversion() |
---|
16 | __aubio_version__ = get_aubio_version() |
---|
17 | |
---|
18 | include_dirs = [] |
---|
19 | library_dirs = [] |
---|
20 | define_macros = [('AUBIO_VERSION', '%s' % __aubio_version__)] |
---|
21 | extra_link_args = [] |
---|
22 | |
---|
23 | include_dirs += ['python/ext'] |
---|
24 | try: |
---|
25 | import numpy |
---|
26 | include_dirs += [numpy.get_include()] |
---|
27 | except ImportError: |
---|
28 | pass |
---|
29 | |
---|
30 | if sys.platform.startswith('darwin'): |
---|
31 | extra_link_args += ['-framework', 'CoreFoundation', |
---|
32 | '-framework', 'AudioToolbox'] |
---|
33 | |
---|
34 | sources = sorted(glob.glob(os.path.join('python', 'ext', '*.c'))) |
---|
35 | |
---|
36 | aubio_extension = Extension("aubio._aubio", |
---|
37 | sources, |
---|
38 | include_dirs = include_dirs, |
---|
39 | library_dirs = library_dirs, |
---|
40 | extra_link_args = extra_link_args, |
---|
41 | define_macros = define_macros) |
---|
42 | |
---|
43 | # TODO: find a way to track if package is built against libaubio |
---|
44 | # if os.path.isfile('src/aubio.h'): |
---|
45 | # if not os.path.isdir(os.path.join('build','src')): |
---|
46 | # pass |
---|
47 | # #__version__ += 'a2' # python only version |
---|
48 | |
---|
49 | classifiers = [ |
---|
50 | 'Development Status :: 4 - Beta', |
---|
51 | 'Environment :: Console', |
---|
52 | 'Intended Audience :: Science/Research', |
---|
53 | 'Topic :: Software Development :: Libraries', |
---|
54 | 'Topic :: Multimedia :: Sound/Audio :: Analysis', |
---|
55 | 'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis', |
---|
56 | 'Operating System :: POSIX', |
---|
57 | 'Operating System :: MacOS :: MacOS X', |
---|
58 | 'Operating System :: Microsoft :: Windows', |
---|
59 | 'Programming Language :: C', |
---|
60 | 'Programming Language :: Python', |
---|
61 | 'License :: OSI Approved :: ' |
---|
62 | 'GNU General Public License v3 or later (GPLv3+)', |
---|
63 | ] |
---|
64 | |
---|
65 | thisdir = os.path.abspath(os.path.dirname(__file__)) |
---|
66 | py_readme_file = os.path.join(thisdir, 'python', 'README.md') |
---|
67 | with open(py_readme_file, 'r') as fp: |
---|
68 | long_description = ''.join(fp.readlines()[3:]) |
---|
69 | |
---|
70 | distrib = setup(name='aubio', |
---|
71 | version = __version__, |
---|
72 | packages = ['aubio'], |
---|
73 | package_dir = {'aubio': 'python/lib/aubio'}, |
---|
74 | ext_modules = [aubio_extension], |
---|
75 | description = 'a collection of tools for music analysis', |
---|
76 | long_description = long_description, |
---|
77 | long_description_content_type = 'text/markdown', |
---|
78 | license = 'GNU/GPL version 3', |
---|
79 | author = 'Paul Brossier', |
---|
80 | author_email = 'piem@aubio.org', |
---|
81 | maintainer = 'Paul Brossier', |
---|
82 | maintainer_email = 'piem@aubio.org', |
---|
83 | url = 'https://aubio.org/', |
---|
84 | platforms = 'any', |
---|
85 | classifiers = classifiers, |
---|
86 | install_requires = ['numpy'], |
---|
87 | setup_requires = ['numpy'], |
---|
88 | cmdclass = { |
---|
89 | 'clean': CleanGenerated, |
---|
90 | 'build_ext': build_ext, |
---|
91 | }, |
---|
92 | entry_points = { |
---|
93 | 'console_scripts': [ |
---|
94 | 'aubio = aubio.cmd:main', |
---|
95 | 'aubiocut = aubio.cut:main', |
---|
96 | ], |
---|
97 | }, |
---|
98 | ) |
---|