-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (45 loc) · 1.29 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# import sys
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
# urllib = 'urllib' if sys.version_info >= (3, 0) else 'urllib2'
setup(
name='miran',
version='0.1',
description='mir and music analysis tools in python.',
author='Ángel Faraldo',
author_email='angelfaraldo@gmail.com',
url='https://github.com/angelfaraldo/miran',
long_description=long_description,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
'Development Status :: 5 - Production/Stable',
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
],
keywords='music analysis mir',
license='MIT',
install_requires=[
#'appscript',
# 'future',
'librosa',
'madmom',
'matplotlib',
#'mido',
#'music21',
#'mutagen',
'numpy',
'openpyxl',
'pandas',
'scipy',
'seaborn',
# urllib
],
packages=find_packages(exclude='misc'),
# data_files = [('miran/keyconfigs', data_files)],
)