Skip to content

Commit

Permalink
✏️ Fix names
Browse files Browse the repository at this point in the history
Add email
  • Loading branch information
Freed-Wu committed Mar 14, 2024
1 parent cd26ebb commit 45435cf
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ ZathuraLanguageServer
tree-sitter-zathurarc
🎤 What is your user name?
wzy
🎤 What is your email?
32936898+Freed-Wu@users.noreply.github.com

Copying from template version None
create .
Expand Down
4 changes: 4 additions & 0 deletions copier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ parser:
user:
type: str
help: What is your user name?

email:
type: str
help: What is your email?
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers = [
dynamic = ["version", "dependencies", "optional-dependencies"]

[[project.authors]]
name = "Wu Zhenyu"
name = "Wu, Zhenyu"
email = "wuzhenyu@ustc.edu"

[project.license]
Expand Down
4 changes: 2 additions & 2 deletions template/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ classifiers = [
dynamic = ["version", "dependencies", "optional-dependencies"]

[[project.authors]]
name = "Wu Zhenyu"
email = "wuzhenyu@ustc.edu"
name = "{{ user }}"
email = "{{ email }}"

[project.license]
text = "GPL v3"
Expand Down
4 changes: 2 additions & 2 deletions template/src/{{ module }}/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <wuzhenyu@ustc.edu>.
Report bugs to <{{ email }}>.
"""


Expand Down

0 comments on commit 45435cf

Please sign in to comment.