From 6c7e390248921a424239a97effff17c52f3404a5 Mon Sep 17 00:00:00 2001 From: Colin Raffel Date: Wed, 15 Oct 2014 14:00:14 -0400 Subject: [PATCH] Using README as long_description --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 46a2ad7a..d43a07cc 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,8 @@ from setuptools import setup +with open('README.rst') as file: + long_description = file.read() + setup( name='mir_eval', version='0.0.0', @@ -8,10 +11,7 @@ author_email='craffel@gmail.com', url='https://github.com/craffel/mir_eval', packages=['mir_eval'], - long_description="""\ - Collection of Python scripts to compute common heuristic accuracy scores - for various music/audio information retrieval/signal processing tasks. - """, + long_description=long_description, classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python",