From 50ddb300a9caabc5b42b15f83dc945ed6fc98b25 Mon Sep 17 00:00:00 2001 From: Toilal Date: Wed, 27 Jan 2016 19:33:48 +0100 Subject: [PATCH] Fix invalid RST description on Pypi --- HISTORY.rst | 6 +++--- setup.py | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 3dcdedd..f9b5e4e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,7 +4,7 @@ History 2.0rc9 (unreleased) ------------------- -- Nothing changed yet. +- Final release. 2.0rc8 (2016-01-26) @@ -122,5 +122,5 @@ History 2.0a1 (2015-11-07) ------------------ -- Rewrite from scratch using `Rebulk `_ -- Read `MIGRATION.rst `_ for migration guidelines. +- Rewrite from scratch using Rebulk. +- Read MIGRATION.rst for migration guidelines. diff --git a/setup.py b/setup.py index 7e583cf..53f220a 100644 --- a/setup.py +++ b/setup.py @@ -41,11 +41,12 @@ args = dict(name='guessit', description='GuessIt - a library for guessing information from video filenames.', long_description=readme + '\n\n' + history, # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers - classifiers=['Development Status :: 4 - Beta', + classifiers=['Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Operating System :: OS Independent', 'Intended Audience :: Developers', 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3',