mirror of
https://github.com/correl/dejavu.git
synced 2024-11-23 19:19:53 +00:00
Bump version to 0.1.2
This commit is contained in:
parent
4aabea7814
commit
785a1db92d
2 changed files with 24 additions and 8 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
### BEGIN ###
|
### BEGIN ###
|
||||||
pydub==0.9.4
|
pydub==0.9.4
|
||||||
PyAudio==0.2.8
|
PyAudio>=0.2.7
|
||||||
numpy==1.8.2
|
numpy==1.8.2
|
||||||
scipy==0.12.1
|
scipy==0.12.1
|
||||||
matplotlib==1.3.1
|
matplotlib==1.3.1
|
||||||
|
|
30
setup.py
30
setup.py
|
@ -15,9 +15,22 @@ def parse_requirements(requirements):
|
||||||
return reqs
|
return reqs
|
||||||
|
|
||||||
PACKAGE_NAME = "PyDejavu"
|
PACKAGE_NAME = "PyDejavu"
|
||||||
PACKAGE_VERSION = "0.1.1"
|
PACKAGE_VERSION = "0.1.2"
|
||||||
SUMMARY = 'Dejavu Audio Fingerprinting'
|
SUMMARY = 'Dejavu: Audio Fingerprinting in Python'
|
||||||
DESCRIPTION = """Dejavu Audio Fingerprinting"""
|
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")
|
REQUIREMENTS = parse_requirements("requirements.txt")
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
@ -25,20 +38,23 @@ setup(
|
||||||
version=PACKAGE_VERSION,
|
version=PACKAGE_VERSION,
|
||||||
description=SUMMARY,
|
description=SUMMARY,
|
||||||
long_description=DESCRIPTION,
|
long_description=DESCRIPTION,
|
||||||
author='worldveil',
|
author='Will Drevo',
|
||||||
author_email='will.drevo@gmail.com',
|
author_email='will.drevo@gmail.com',
|
||||||
|
maintainer="Saleem Ansari",
|
||||||
|
maintainer_email="tuxdna@gmail.com",
|
||||||
url='http://github.com/tuxdna/dejavu',
|
url='http://github.com/tuxdna/dejavu',
|
||||||
license='Apache 2.0',
|
license='MIT License',
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
platforms=['Any'],
|
platforms=['Unix'],
|
||||||
install_requires=REQUIREMENTS,
|
install_requires=REQUIREMENTS,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 4 - Beta',
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: Apache Software License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
],
|
],
|
||||||
|
keywords="python, audio, fingerprinting, music, numpy, landmark",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue