-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add email
- Loading branch information
Showing
5 changed files
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -241,6 +241,8 @@ ZathuraLanguageServer | |
tree-sitter-zathurarc | ||
🎤 What is your user name? | ||
wzy | ||
🎤 What is your email? | ||
[email protected] | ||
|
||
Copying from template version None | ||
create . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,7 @@ parser: | |
user: | ||
type: str | ||
help: What is your user name? | ||
|
||
email: | ||
type: str | ||
help: What is your email? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ classifiers = [ | |
dynamic = ["version", "dependencies", "optional-dependencies"] | ||
|
||
[[project.authors]] | ||
name = "Wu Zhenyu" | ||
name = "Wu, Zhenyu" | ||
email = "[email protected]" | ||
|
||
[project.license] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,8 +30,8 @@ classifiers = [ | |
dynamic = ["version", "dependencies", "optional-dependencies"] | ||
|
||
[[project.authors]] | ||
name = "Wu Zhenyu" | ||
email = "[email protected]" | ||
name = "{{ user }}" | ||
email = "{{ email }}" | ||
|
||
[project.license] | ||
text = "GPL v3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,10 @@ | |
NAME = NAME.replace("_", "-") | ||
VERSION = rf"""{NAME} {__version__} | ||
Copyright (C) {datetime.now().year} | ||
Written by Wu Zhenyu | ||
Written by {{ user }} | ||
""" | ||
EPILOG = """ | ||
Report bugs to <[email protected]>. | ||
Report bugs to <{{ email }}>. | ||
""" | ||
|
||
|
||
|