ADTLib

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 1a1636939cdc46aa90079606fa1e76b502f0f867
parent 7d2f9b63f8ac3f9e97a8c5bbead7398a7b704999
Author: CarlSouthall <[email protected]>
Date:   Wed, 11 Oct 2017 17:19:48 +0100

setup update

Diffstat:
Msetup.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/setup.py b/setup.py @@ -2,13 +2,13 @@ from distutils.core import setup from setuptools import find_packages import glob -package_data = ['/files/*'] +package_data = ['files/*'] scripts = glob.glob('bin/*') setup( name = 'ADTLib', packages=find_packages(exclude=[]), - version = '2.0', + version = '2.0.1', description = 'Automated Drum Trancription Library', author = 'Carl Southall', author_email = '[email protected]', @@ -24,7 +24,7 @@ setup( 'Topic :: Multimedia :: Sound/Audio :: Analysis', 'Topic :: Scientific/Engineering :: Artificial Intelligence'], - install_requires=['numpy','scipy','cython','madmom'], + install_requires=['numpy','scipy','cython','madmom','fpdf'], package_data={'ADTLib': package_data}, )