Mercurial > hg > vampy-host
comparison setup.py @ 125:ece31f26017e
Fix versions, description, classifiers
author | Chris Cannam |
---|---|
date | Wed, 24 Jun 2015 14:34:48 +0100 |
parents | 89cc3595c404 |
children | d241b83af53b |
comparison
equal
deleted
inserted
replaced
124:bea7cf4126b5 | 125:ece31f26017e |
---|---|
24 sources = srcfiles, | 24 sources = srcfiles, |
25 define_macros = [ ('_USE_MATH_DEFINES', 1) ], | 25 define_macros = [ ('_USE_MATH_DEFINES', 1) ], |
26 include_dirs = [ 'vamp-plugin-sdk', np.get_include() ]) | 26 include_dirs = [ 'vamp-plugin-sdk', np.get_include() ]) |
27 | 27 |
28 setup (name = 'vamp', | 28 setup (name = 'vamp', |
29 version = '1.0', | 29 version = '1.0.0', |
30 url = 'https://code.soundsoftware.ac.uk/projects/vampy-host', | 30 url = 'https://code.soundsoftware.ac.uk/projects/vampy-host', |
31 description = 'This module allows Python code to load and use Vamp plugins for audio feature analysis.', | 31 description = 'Use Vamp plugins for audio feature analysis.', |
32 long_description = ( read('README.rst') + '\n\n' + read('COPYING.rst') ), | 32 long_description = ( read('README.rst') + '\n\n' + read('COPYING.rst') ), |
33 license = 'MIT', | 33 license = 'MIT', |
34 packages = find_packages(exclude = [ '*test*' ]), | 34 packages = find_packages(exclude = [ '*test*' ]), |
35 ext_modules = [ vampyhost ], | 35 ext_modules = [ vampyhost ], |
36 requires = [ 'numpy' ], | 36 requires = [ 'numpy' ], |
39 classifiers = [ | 39 classifiers = [ |
40 'Development Status :: 4 - Beta', | 40 'Development Status :: 4 - Beta', |
41 'Intended Audience :: Science/Research', | 41 'Intended Audience :: Science/Research', |
42 'Intended Audience :: Developers', | 42 'Intended Audience :: Developers', |
43 'License :: OSI Approved :: MIT License', | 43 'License :: OSI Approved :: MIT License', |
44 'Operating System :: MacOS X', | 44 'Operating System :: MacOS :: MacOS X', |
45 'Operating System :: Microsoft :: Windows', | 45 'Operating System :: Microsoft :: Windows', |
46 'Operating System :: POSIX', | 46 'Operating System :: POSIX', |
47 'Programming Language :: Python', | 47 'Programming Language :: Python', |
48 'Programming Language :: Python :: 2', | 48 'Programming Language :: Python :: 2', |
49 'Programming Language :: Python :: 3', | 49 'Programming Language :: Python :: 3', |