|
27 | 27 | limitations under the License. |
28 | 28 | """ |
29 | 29 |
|
30 | | -# Module version |
31 | | -__version_info__ = (0, 1, 1) |
32 | | -__version__ = ".".join(str(x) for x in __version_info__) |
33 | | - |
34 | | -# Documentation strings format |
35 | | -__docformat__ = "restructuredtext en" |
36 | | - |
37 | | -# ------------------------------------------------------------------------------ |
38 | | - |
39 | 30 | import os |
40 | 31 |
|
41 | 32 | try: |
|
45 | 36 |
|
46 | 37 | # ------------------------------------------------------------------------------ |
47 | 38 |
|
| 39 | +# Module version |
| 40 | +__version_info__ = (0, 1, 2) |
| 41 | +__version__ = ".".join(str(x) for x in __version_info__) |
| 42 | + |
| 43 | +# Documentation strings format |
| 44 | +__docformat__ = "restructuredtext en" |
| 45 | + |
| 46 | +# ------------------------------------------------------------------------------ |
| 47 | + |
| 48 | + |
48 | 49 | def read(fname): |
49 | 50 | """ |
50 | 51 | Utility method to read the content of a whole file |
@@ -73,10 +74,8 @@ def read(fname): |
73 | 74 | "License :: OSI Approved :: Apache Software License", |
74 | 75 | 'Operating System :: OS Independent', |
75 | 76 | 'Programming Language :: Python :: 2.7', |
76 | | - 'Programming Language :: Python :: 3', |
77 | | - 'Programming Language :: Python :: 3.0', |
78 | | - 'Programming Language :: Python :: 3.1', |
79 | | - 'Programming Language :: Python :: 3.2', |
80 | 77 | 'Programming Language :: Python :: 3.3', |
| 78 | + 'Programming Language :: Python :: 3.4', |
| 79 | + 'Programming Language :: Python :: 3.5', |
81 | 80 | "Topic :: Software Development :: Libraries :: Python Modules", |
82 | 81 | ]) |
0 commit comments