|
31 | 31 | locale.setlocale(locale.LC_ALL, "en_US.UTF-8") |
32 | 32 |
|
33 | 33 | NAME = "pyexcel-xls" |
34 | | -AUTHOR = "chfw" |
35 | | -VERSION = "0.6.0" |
| 34 | +AUTHOR = "C.W." |
| 35 | +VERSION = "0.6.1" |
36 | 36 | EMAIL = "info@pyexcel.org" |
37 | 37 | LICENSE = "New BSD" |
38 | 38 | DESCRIPTION = ( |
39 | 39 | "A wrapper library to read, manipulate and write data in xls format. It" + |
40 | 40 | "reads xlsx and xlsm format" |
41 | 41 | ) |
42 | 42 | URL = "https://github.com/pyexcel/pyexcel-xls" |
43 | | -DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL |
| 43 | +DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL |
44 | 44 | FILES = ["README.rst","CONTRIBUTORS.rst", "CHANGELOG.rst"] |
45 | 45 | KEYWORDS = [ |
46 | 46 | "python", |
|
53 | 53 | "Topic :: Software Development :: Libraries", |
54 | 54 | "Programming Language :: Python", |
55 | 55 | "Intended Audience :: Developers", |
56 | | - "Programming Language :: Python :: 2.6", |
57 | | - "Programming Language :: Python :: 2.7", |
58 | | - "Programming Language :: Python :: 3.3", |
59 | | - "Programming Language :: Python :: 3.4", |
60 | | - "Programming Language :: Python :: 3.5", |
| 56 | + |
| 57 | + "Programming Language :: Python :: 3 :: Only", |
| 58 | + |
| 59 | + |
| 60 | + |
61 | 61 | "Programming Language :: Python :: 3.6", |
62 | 62 | "Programming Language :: Python :: 3.7", |
63 | 63 | "Programming Language :: Python :: 3.8", |
64 | 64 |
|
65 | 65 | 'Programming Language :: Python :: Implementation :: PyPy' |
66 | 66 | ] |
67 | 67 |
|
| 68 | +PYTHON_REQUIRES = ">=3.6" |
68 | 69 |
|
69 | 70 | INSTALL_REQUIRES = [ |
70 | 71 | "pyexcel-io>=0.5.3", |
|
78 | 79 | } |
79 | 80 | # You do not need to read beyond this line |
80 | 81 | PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable) |
81 | | -GS_COMMAND = ("gs pyexcel-xls v0.6.0 " + |
82 | | - "Find 0.6.0 in changelog for more details") |
| 82 | +HERE = os.path.abspath(os.path.dirname(__file__)) |
| 83 | + |
| 84 | +GS_COMMAND = ("gease pyexcel-xls v0.6.1 " + |
| 85 | + "Find 0.6.1 in changelog for more details") |
83 | 86 | NO_GS_MESSAGE = ("Automatic github release is disabled. " + |
84 | 87 | "Please install gease to enable it.") |
85 | 88 | UPLOAD_FAILED_MSG = ( |
86 | 89 | 'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND) |
87 | | -HERE = os.path.abspath(os.path.dirname(__file__)) |
88 | 90 |
|
89 | 91 |
|
90 | 92 | class PublishCommand(Command): |
@@ -130,7 +132,6 @@ def run(self): |
130 | 132 | "publish": PublishCommand |
131 | 133 | }) |
132 | 134 |
|
133 | | - |
134 | 135 | def has_gease(): |
135 | 136 | """ |
136 | 137 | test if github release command is installed |
@@ -199,6 +200,7 @@ def filter_out_test_code(file_handle): |
199 | 200 | long_description=read_files(*FILES), |
200 | 201 | license=LICENSE, |
201 | 202 | keywords=KEYWORDS, |
| 203 | + python_requires=PYTHON_REQUIRES, |
202 | 204 | extras_require=EXTRAS_REQUIRE, |
203 | 205 | tests_require=["nose"], |
204 | 206 | install_requires=INSTALL_REQUIRES, |
|
0 commit comments