Skip to content

Commit

Permalink
adding setup files in preparation for PiPy submit
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Lidy committed Jan 5, 2016
1 parent 926e757 commit 0c4ecf5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 = [],
)

0 comments on commit 0c4ecf5

Please sign in to comment.