Skip to content

Commit e0edeeb

Browse files
committed
🚚 Add REPLACE_FULL_NAME replacement
1 parent c0d5b80 commit e0edeeb

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

Diff for: LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022-present REPLACE_NAME REPLACE_SURNAME <REPLACE_EMAIL>
3+
Copyright (c) 2022-present REPLACE_FULL_NAME <REPLACE_EMAIL>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Diff for: README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
* `REPLACE_PACKAGE_NAME`: name of the package (usually the same name as the repository in which it's hosted).
1717
* `REPLACE_PACKAGE_DESCRIPTION`: description of the package.
18-
* `REPLACE_NAME`: user's name.
19-
* `REPLACE_SURNAME`: user's surname.
18+
* `REPLACE_FULL_NAME`: user's full name.
2019
* `REPLACE_EMAIL`: user's email.
2120
* `REPLACE_GITHUB_USERNAME`: GitHub username of the package owner.

Diff for: docs/license.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
MIT License
44

5-
Copyright (c) 2022-present REPLACE_NAME REPLACE_SURNAME <REPLACE_EMAIL>
5+
Copyright (c) 2022-present REPLACE_FULL_NAME <REPLACE_EMAIL>
66

77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

Diff for: mkdocs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
site_name: REPLACE_PACKAGE_NAME
22
site_url: https://github.com/REPLACE_GITHUB_USERNAME/REPLACE_PACKAGE_NAME
3-
site_author: REPLACE_NAME REPLACE_SURNAME
3+
site_author: REPLACE_FULL_NAME
44
site_description: REPLACE_PACKAGE_DESCRIPTION
55

66
repo_name: REPLACE_GITHUB_USERNAME/REPLACE_PACKAGE_NAME
77
repo_url: https://github.com/REPLACE_GITHUB_USERNAME/REPLACE_PACKAGE_NAME
88

9-
copyright: Copyright (c) 2022-present REPLACE_NAME REPLACE_SURNAME <REPLACE_EMAIL>
9+
copyright: Copyright (c) 2022-present REPLACE_FULL_NAME <REPLACE_EMAIL>
1010

1111
theme:
1212
name: material

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ build-backend = "hatchling.build"
33
requires = ["hatchling"]
44

55
[project]
6-
authors = [{name = "REPLACE_NAME REPLACE_SURNAME"}]
6+
authors = [{name = "REPLACE_FULL_NAME"}]
77
classifiers = [
88
"Development Status :: 4 - Beta",
99
"Programming Language :: Python",

Diff for: src/REPLACE_PACKAGE_NAME/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""`REPLACE_PACKAGE_NAME `: REPLACE_PACKAGE_DESCRIPTION"""
22

3-
__author__ = "REPLACE_NAME REPLACE_SURNAME <REPLACE_EMAIL>"
3+
__author__ = "REPLACE_FULL_NAME <REPLACE_EMAIL>"
44
__version__ = "0.0.1"

0 commit comments

Comments
 (0)