-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 990 Bytes
/
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='timbral_models',
version='0.4.0',
description='Algorithms for predicting the timbral characteristics of audio files',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/AudioCommons/timbral_models',
author='Andy Pearce',
author_email='andy.pearce@surrey.ac.uk',
license='Apache Software',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
packages=['timbral_models'],
install_requires=[
'numpy',
'soundfile',
'scipy',
'librosa',
'sklearn',
'pyloudnorm',
'six'
],
zip_safe=False)