summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2016-02-02 22:53:31 +0100
committerRalf Gommers <ralf.gommers@gmail.com>2016-02-02 22:53:31 +0100
commitef988a4a4658c991f4445f6241ab02d74710c6e3 (patch)
tree87b84a3c476e08c5dd73c51129f7e0dcdcea0c6a
parent36adec56e92e241eacb94c8f3dcae5a5b0b84310 (diff)
downloadnumpydoc-ef988a4a4658c991f4445f6241ab02d74710c6e3.tar.gz
REL: update version to 0.6.0, add PyPi classifiers.v0.6
-rw-r--r--setup.py14
1 files changed, 11 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 28b7fbf..80b6d25 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ from distutils.core import setup
if sys.version_info[:2] < (2, 6) or (3, 0) <= sys.version_info[0:2] < (3, 3):
raise RuntimeError("Python version 2.6, 2.7 or >= 3.3 required.")
-version = "0.6.dev"
+version = "0.6.0"
setup(
name="numpydoc",
@@ -17,10 +17,18 @@ setup(
version=version,
description="Sphinx extension to support docstrings in Numpy format",
# classifiers from http://pypi.python.org/pypi?%3Aaction=list_classifiers
- classifiers=["Development Status :: 3 - Alpha",
+ classifiers=["Development Status :: 4 - Beta",
"Environment :: Plugins",
"License :: OSI Approved :: BSD License",
- "Topic :: Documentation"],
+ "Topic :: Documentation",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 2",
+ "Programming Language :: Python :: 2.6",
+ "Programming Language :: Python :: 2.7",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3.3",
+ "Programming Language :: Python :: 3.4",
+ "Programming Language :: Python :: 3.5"],
keywords="sphinx numpy",
author="Pauli Virtanen and others",
author_email="pav@iki.fi",