forked from yashrajkakkad/presto-chango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (30 loc) · 1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='Presto Chango',
version='1.0.2',
author='Prayag Savsani',
author_email='[email protected]',
description='Music identification through audio fingerprinting',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/yashrajkakkad/presto-chango',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio :: Analysis'
],
install_requires=[
'Click', 'scipy', 'numpy', 'scikit-image', 'matplotlib', 'pydub', 'pyaudio', 'appdirs'
],
entry_points={
'console_scripts': [
'presto-chango = presto_chango:cli'
]
}
)