Skip to content

Commit 7d6be62

Browse files
committed
fix: package_name
1 parent 4c420b9 commit 7d6be62

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ author_email: mjun@mjunya.com
55
author_name: Junya Morioka
66
description: Modern Python Project
77
package_name: my_package
8-
project_name: Python Project Template
8+
project_name: Python-Project-Template
99
python_version: '3.12'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Python Project Template
1+
# Python-Project-Template
22

33
[![CI](https://github.com/mjun0812/python-project-template/actions/workflows/ci.yml/badge.svg)](https://github.com/mjun0812/python-project-template/actions/workflows/ci.yml)
44

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "Python Project Template"
2+
name = "Python-Project-Template"
33
version = "0.0.1"
44
description = "Modern Python Project"
55
readme = "README.md"

src/my_package/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
def hello() -> str:
2-
return "Hello from Python Project Template!"
2+
return "Hello from Python-Project-Template!"

tests/test_hello.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
def test_hello() -> None:
55
result = hello()
6-
expected = "Hello from Python Project Template!"
6+
expected = "Hello from Python-Project-Template!"
77
assert result == expected
88

99

0 commit comments

Comments
 (0)