setup.py (1031B)
1 from distutils.core import setup 2 from setuptools import find_packages 3 import glob 4 5 package_data = ['files/*'] 6 scripts = glob.glob('bin/*') 7 8 setup( 9 name = 'ADTLib', 10 packages=find_packages(exclude=[]), 11 version = '2.1.2', 12 description = 'Automated Drum Trancription Library', 13 author = 'Carl Southall', 14 author_email = '[email protected]', 15 license='BSD', 16 url = 'https://github.com/CarlSouthall/ADTLib', 17 download_url = 'https://github.com/CarlSouthall/ADTLib', 18 keywords = ['Drums', 'Transcription', 'Automated'], 19 scripts=scripts, 20 classifiers = [ 21 'Programming Language :: Python :: 2.7', 22 'License :: OSI Approved :: BSD License', 23 'License :: Free for non-commercial use', 24 'Topic :: Multimedia :: Sound/Audio :: Analysis', 25 'Topic :: Scientific/Engineering :: Artificial Intelligence'], 26 27 install_requires=['numpy','scipy','cython','madmom','fpdf'], 28 package_data={'ADTLib': package_data}, 29 30 )