Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit a59ac54

Browse files
Renamed "python_project" to "package" (#8)
2 parents 10afaf2 + 306a06d commit a59ac54

33 files changed

+5
-5
lines changed

.github/workflows/standard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
with:
165165
operating_system: ${{ matrix.os }}
166166
python_version: ${{ matrix.python_version }}
167-
validation_command: PythonProjectBootstrapper python_project this_value_is_ignored --version
167+
validation_command: PythonProjectBootstrapper package this_value_is_ignored --version
168168

169169
# ----------------------------------------------------------------------
170170
publish:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,4 @@ python_files = [
167167
version = { attr = "PythonProjectBootstrapper.__version__" }
168168

169169
[tool.setuptools.package-data]
170-
"PythonProjectBootstrapper.python_project" = ["**"]
170+
"PythonProjectBootstrapper.package" = ["**"]

src/BuildBinary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
# ----------------------------------------------------------------------
7979
_include_files: list[tuple[str, str]] = []
8080

81-
_project_root = PathEx.EnsureDir(_this_dir / "PythonProjectBootstrapper" / "python_project")
81+
_project_root = PathEx.EnsureDir(_this_dir / "PythonProjectBootstrapper" / "package")
8282
_lib_path = PurePath("lib")
8383

8484
for root, _, filenames in os.walk(_project_root):

src/PythonProjectBootstrapper/EntryPoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def list_commands(self, *args, **kwargs): # pylint: disable=unused-argument
4646

4747
# ----------------------------------------------------------------------
4848
class ProjectType(str, Enum):
49-
python_project = "python_project"
49+
package = "package"
5050

5151

5252
# ----------------------------------------------------------------------

src/PythonProjectBootstrapper/python_project/cookiecutter.json renamed to src/PythonProjectBootstrapper/package/cookiecutter.json

File renamed without changes.

src/PythonProjectBootstrapper/python_project/cookiecutter_prompts.yaml renamed to src/PythonProjectBootstrapper/package/cookiecutter_prompts.yaml

File renamed without changes.

src/PythonProjectBootstrapper/python_project/hooks/post_gen_project.py renamed to src/PythonProjectBootstrapper/package/hooks/post_gen_project.py

File renamed without changes.

src/PythonProjectBootstrapper/python_project/hooks/pre_gen_project.py renamed to src/PythonProjectBootstrapper/package/hooks/pre_gen_project.py

File renamed without changes.

src/PythonProjectBootstrapper/python_project/local_extensions.py renamed to src/PythonProjectBootstrapper/package/local_extensions.py

File renamed without changes.

src/PythonProjectBootstrapper/python_project/templates/python_header.py renamed to src/PythonProjectBootstrapper/package/templates/python_header.py

File renamed without changes.

0 commit comments

Comments
 (0)