forked from tuwien-musicir/rp_extract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
16 lines (14 loc) · 850 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# from http://peterdowns.com/posts/first-time-with-pypi.html
from distutils.core import setup
setup(
name = 'rp_extract',
packages = ['rp_extract'], # this must be the same as the name above
version = '0.1',
description = 'Rhythm Pattern Audio Feature Extractor for Music Similarity, Music Classification and Music Recommendation',
author = 'Thomas Lidy and Alexander Schindler',
author_email = '',
url = 'https://github.com/tuwien-musicir/rp_extract', # the URL to the github repo
download_url = 'https://github.com/tuwien-musicir/rp_extract/tarball/0.1', # URL to the tagged version (use git tag 0.x -m "tagged version ..."; git push --tags origin master)
keywords = ['audio', 'music', 'features', 'audio descriptors', 'feature extraction', 'music similarity', 'music recognition', 'music recommendation'],
classifiers = [],
)