From 785a1db92d243c705581f34a61d8401f267b64d8 Mon Sep 17 00:00:00 2001 From: Saleem Ansari Date: Tue, 2 Dec 2014 15:42:09 +0530 Subject: [PATCH] Bump version to 0.1.2 --- requirements.txt | 2 +- setup.py | 30 +++++++++++++++++++++++------- 2 files changed, 24 insertions(+), 8 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8b3eea8..6e13078 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ ### BEGIN ### pydub==0.9.4 -PyAudio==0.2.8 +PyAudio>=0.2.7 numpy==1.8.2 scipy==0.12.1 matplotlib==1.3.1 diff --git a/setup.py b/setup.py index f0b6def..cfb64ad 100644 --- a/setup.py +++ b/setup.py @@ -15,9 +15,22 @@ def parse_requirements(requirements): return reqs PACKAGE_NAME = "PyDejavu" -PACKAGE_VERSION = "0.1.1" -SUMMARY = 'Dejavu Audio Fingerprinting' -DESCRIPTION = """Dejavu Audio Fingerprinting""" +PACKAGE_VERSION = "0.1.2" +SUMMARY = 'Dejavu: Audio Fingerprinting in Python' +DESCRIPTION = """ +Audio fingerprinting and recognition algorithm implemented in Python + +See the explanation here: + +`http://willdrevo.com/fingerprinting-and-audio-recognition-with-python/`__ + +Dejavu can memorize recorded audio by listening to it once and fingerprinting +it. Then by playing a song and recording microphone input or on disk file, +Dejavu attempts to match the audio against the fingerprints held in the +database, returning the song or recording being played. + +__ http://willdrevo.com/fingerprinting-and-audio-recognition-with-python/ +""" REQUIREMENTS = parse_requirements("requirements.txt") setup( @@ -25,20 +38,23 @@ setup( version=PACKAGE_VERSION, description=SUMMARY, long_description=DESCRIPTION, - author='worldveil', + author='Will Drevo', author_email='will.drevo@gmail.com', + maintainer="Saleem Ansari", + maintainer_email="tuxdna@gmail.com", url='http://github.com/tuxdna/dejavu', - license='Apache 2.0', + license='MIT License', include_package_data=True, packages=find_packages(), - platforms=['Any'], + platforms=['Unix'], install_requires=REQUIREMENTS, classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', - 'License :: OSI Approved :: Apache Software License', + 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries :: Python Modules', ], + keywords="python, audio, fingerprinting, music, numpy, landmark", )