Skip to content

Commit ef988a4

Browse files
committed
REL: update version to 0.6.0, add PyPi classifiers.
1 parent 36adec5 commit ef988a4

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

setup.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,26 @@
99
if sys.version_info[:2] < (2, 6) or (3, 0) <= sys.version_info[0:2] < (3, 3):
1010
raise RuntimeError("Python version 2.6, 2.7 or >= 3.3 required.")
1111

12-
version = "0.6.dev"
12+
version = "0.6.0"
1313

1414
setup(
1515
name="numpydoc",
1616
packages=["numpydoc"],
1717
version=version,
1818
description="Sphinx extension to support docstrings in Numpy format",
1919
# classifiers from http://pypi.python.org/pypi?%3Aaction=list_classifiers
20-
classifiers=["Development Status :: 3 - Alpha",
20+
classifiers=["Development Status :: 4 - Beta",
2121
"Environment :: Plugins",
2222
"License :: OSI Approved :: BSD License",
23-
"Topic :: Documentation"],
23+
"Topic :: Documentation",
24+
"Programming Language :: Python",
25+
"Programming Language :: Python :: 2",
26+
"Programming Language :: Python :: 2.6",
27+
"Programming Language :: Python :: 2.7",
28+
"Programming Language :: Python :: 3",
29+
"Programming Language :: Python :: 3.3",
30+
"Programming Language :: Python :: 3.4",
31+
"Programming Language :: Python :: 3.5"],
2432
keywords="sphinx numpy",
2533
author="Pauli Virtanen and others",
2634
author_email="[email protected]",

0 commit comments

Comments
 (0)