-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (20 loc) · 696 Bytes
/
setup.py
File metadata and controls
20 lines (20 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name = 'pychorus',
packages = ['pychorus'], # this must be the same as the name above
version = '0.1',
description = 'Library to find the choruses and interesting segments of songs',
author = 'Vivek Jayaram',
author_email = 'vivekjayaram@gmail.com',
url = 'https://github.com/vivjay30/pychorus', # use the URL to the github repo
download_url = 'https://github.com/vivjay30/pychorus/archive/0.1.tar.gz', # I'll explain this in a second
keywords = ['Chorus', 'Audio Signal Processing', 'Music'], # arbitrary keywords
install_requires=[
'librosa',
'numpy',
'scipy',
'soundfile',
'matplotlib'
],
classifiers = [],
)