|
9 | 9 | if sys.version_info[:2] < (2, 6) or (3, 0) <= sys.version_info[0:2] < (3, 3):
|
10 | 10 | raise RuntimeError("Python version 2.6, 2.7 or >= 3.3 required.")
|
11 | 11 |
|
12 |
| -version = "0.6.dev" |
| 12 | +version = "0.6.0" |
13 | 13 |
|
14 | 14 | setup(
|
15 | 15 | name="numpydoc",
|
16 | 16 | packages=["numpydoc"],
|
17 | 17 | version=version,
|
18 | 18 | description="Sphinx extension to support docstrings in Numpy format",
|
19 | 19 | # classifiers from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
20 |
| - classifiers=["Development Status :: 3 - Alpha", |
| 20 | + classifiers=["Development Status :: 4 - Beta", |
21 | 21 | "Environment :: Plugins",
|
22 | 22 | "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"], |
24 | 32 | keywords="sphinx numpy",
|
25 | 33 | author="Pauli Virtanen and others",
|
26 | 34 |
|
|
0 commit comments