Skip to content

Commit 2d2010b

Browse files
committed
🤝 update author to initials
1 parent 5b6fab7 commit 2d2010b

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.moban.cd/moban.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: moban
22
project: moban
33
organisation: moremoban
4-
author: chfw
4+
author: C. W.
55
66
license: MIT
77
version: 0.8.2
@@ -37,3 +37,5 @@ setup_use_markers: true
3737
setup_use_markers_fix: true
3838
python_requires: ">=3.6"
3939
min_python_version: "3.6"
40+
excluded_github_users:
41+
- chfw

CONTRIBUTORS.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
23
9 contributors
34
================================================================================
45

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
project = 'moban'
2525
copyright = '2017-2020 Onni Software Ltd.'
26-
author = 'chfw'
26+
author = 'C. W.'
2727
# The short X.Y version
2828
version = '0.8.2'
2929
# The full version, including alpha/beta/rc tags

moban/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__version__ = "0.8.2"
2-
__author__ = "chfw"
2+
__author__ = "C. W."

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
locale.setlocale(locale.LC_ALL, "en_US.UTF-8")
4141

4242
NAME = "moban"
43-
AUTHOR = "chfw"
43+
AUTHOR = "C. W."
4444
VERSION = "0.8.2"
4545
4646
LICENSE = "MIT"
@@ -98,13 +98,14 @@
9898
}
9999
# You do not need to read beyond this line
100100
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
101-
GS_COMMAND = ("gs moban v0.8.2 " +
101+
HERE = os.path.abspath(os.path.dirname(__file__))
102+
103+
GS_COMMAND = ("gease moban v0.8.2 " +
102104
"Find 0.8.2 in changelog for more details")
103105
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
104106
"Please install gease to enable it.")
105107
UPLOAD_FAILED_MSG = (
106108
'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND)
107-
HERE = os.path.abspath(os.path.dirname(__file__))
108109

109110

110111
class PublishCommand(Command):
@@ -150,7 +151,6 @@ def run(self):
150151
"publish": PublishCommand
151152
})
152153

153-
154154
def has_gease():
155155
"""
156156
test if github release command is installed

0 commit comments

Comments
 (0)