|
32 | 32 |
|
33 | 33 | NAME = "pyexcel-xlsbr"
|
34 | 34 | AUTHOR = "C.W."
|
35 |
| -VERSION = "0.6.0" |
| 35 | +VERSION = "0.6.1" |
36 | 36 | EMAIL = "info@pyexcel.org"
|
37 | 37 | LICENSE = "New BSD"
|
38 | 38 | DESCRIPTION = (
|
39 | 39 | "read Microsoft Excel tm xlsb file"
|
40 | 40 | )
|
41 | 41 | URL = "https://github.com/pyexcel/pyexcel-xlsbr"
|
42 |
| -DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL |
| 42 | +DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL |
43 | 43 | FILES = ["README.rst", "CHANGELOG.rst"]
|
44 | 44 | KEYWORDS = [
|
45 | 45 | "python",
|
|
49 | 49 | "Topic :: Software Development :: Libraries",
|
50 | 50 | "Programming Language :: Python",
|
51 | 51 | "Intended Audience :: Developers",
|
52 |
| - "Programming Language :: Python :: 2.6", |
53 |
| - "Programming Language :: Python :: 2.7", |
54 |
| - "Programming Language :: Python :: 3.3", |
55 |
| - "Programming Language :: Python :: 3.4", |
56 |
| - "Programming Language :: Python :: 3.5", |
| 52 | + |
| 53 | + "Programming Language :: Python :: 3 :: Only", |
| 54 | + |
| 55 | + |
| 56 | + |
57 | 57 | "Programming Language :: Python :: 3.6",
|
58 | 58 | "Programming Language :: Python :: 3.7",
|
59 | 59 | "Programming Language :: Python :: 3.8",
|
60 | 60 |
|
61 | 61 | ]
|
62 | 62 |
|
| 63 | +PYTHON_REQUIRES = ">=3.6" |
63 | 64 |
|
64 | 65 | INSTALL_REQUIRES = [
|
65 | 66 | "pyxlsb",
|
|
74 | 75 | PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
|
75 | 76 | HERE = os.path.abspath(os.path.dirname(__file__))
|
76 | 77 |
|
77 |
| -GS_COMMAND = ("gease pyexcel-xlsbr v0.6.0 " + |
78 |
| - "Find 0.6.0 in changelog for more details") |
| 78 | +GS_COMMAND = ("gease pyexcel-xlsbr v0.6.1 " + |
| 79 | + "Find 0.6.1 in changelog for more details") |
79 | 80 | NO_GS_MESSAGE = ("Automatic github release is disabled. " +
|
80 | 81 | "Please install gease to enable it.")
|
81 | 82 | UPLOAD_FAILED_MSG = (
|
@@ -193,6 +194,7 @@ def filter_out_test_code(file_handle):
|
193 | 194 | long_description=read_files(*FILES),
|
194 | 195 | license=LICENSE,
|
195 | 196 | keywords=KEYWORDS,
|
| 197 | + python_requires=PYTHON_REQUIRES, |
196 | 198 | extras_require=EXTRAS_REQUIRE,
|
197 | 199 | tests_require=["nose"],
|
198 | 200 | install_requires=INSTALL_REQUIRES,
|
|
0 commit comments