Skip to content

Commit b48d772

Browse files
committed
This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst
1 parent af4a0c2 commit b48d772

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pyexcel-odsw - Let you focus on data, instead of file formats
55
.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel.github.io/master/images/patreon.png
66
:target: https://www.patreon.com/chfw
77

8-
.. image:: https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg
8+
.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel-mobans/master/images/awesome-badge.svg
99
:target: https://awesome-python.com/#specific-formats-processing
1010

1111
.. image:: https://travis-ci.org/pyexcel/pyexcel-odsw.svg?branch=master

lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pip install flake8
2-
flake8 --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long . && python setup.py checkdocs
2+
flake8 --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long . && python setup.py checkdocs

pyexcel_odsw/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.0.1"
2-
__author__ = "chfw"
1+
__version__ = '0.0.1'
2+
__author__ = 'C.W.'

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
locale.setlocale(locale.LC_ALL, "en_US.UTF-8")
3232

3333
NAME = "pyexcel-odsw"
34-
AUTHOR = "chfw"
34+
AUTHOR = "C.W."
3535
VERSION = "0.0.1"
3636
3737
LICENSE = "New BSD"
@@ -71,13 +71,14 @@
7171
}
7272
# You do not need to read beyond this line
7373
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
74-
GS_COMMAND = ("gs pyexcel-odsw v0.0.0 " +
74+
HERE = os.path.abspath(os.path.dirname(__file__))
75+
76+
GS_COMMAND = ("gease pyexcel-odsw v0.0.0 " +
7577
"Find 0.0.0 in changelog for more details")
7678
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7779
"Please install gease to enable it.")
7880
UPLOAD_FAILED_MSG = (
7981
'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND)
80-
HERE = os.path.abspath(os.path.dirname(__file__))
8182

8283

8384
class PublishCommand(Command):
@@ -123,7 +124,6 @@ def run(self):
123124
"publish": PublishCommand
124125
})
125126

126-
127127
def has_gease():
128128
"""
129129
test if github release command is installed

0 commit comments

Comments
 (0)