forked from dodiku/AudioOwl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.01 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
33
from setuptools import setup
import sys, os
with open('README.md', encoding='utf8') as f:
long_description = f.read()
setup(name='audioowl',
version='0.0.14',
description='Fast and simple music and audio analysis using RNN in Python',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Sound/Audio :: Analysis'
],
keywords='Fast and simple music and audio analysis using RNN in Python',
url='https://github.com/dodiku/AudioOwl',
author='Dror Ayalon',
author_email='[email protected]',
license='MIT',
packages=['audioowl'],
install_requires=[
'numpy',
'scipy',
'cython',
'madmom>=0.15.1,<0.15.2',
'librosa>=0.5.1,<0.5.2',
],
include_package_data=True,
zip_safe=False)