templatepy 0.4.0__tar.gz → 0.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {templatepy-0.4.0 → templatepy-0.4.2}/CITATION.cff +4 -6
- {templatepy-0.4.0 → templatepy-0.4.2}/PKG-INFO +3 -1
- {templatepy-0.4.0 → templatepy-0.4.2}/README.md +2 -0
- templatepy-0.4.2/VERSION +1 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/copier.yaml +1 -1
- {templatepy-0.4.0 → templatepy-0.4.2}/pyproject.toml +1 -1
- templatepy-0.4.0/VERSION +0 -1
- {templatepy-0.4.0 → templatepy-0.4.2}/src/templatepy/__init__.py +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.github/workflows/bump.yml +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.github/workflows/ci.yml +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.github/workflows/docs.yml +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.github/workflows/pr-review.yml +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.github/workflows/release.yml +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.gitignore +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.gitleaks.toml +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/.pre-commit-config.yaml +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/CITATION.cff +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/CODE_OF_CONDUCT.md +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/CONTRIBUTING.md +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/LICENSE +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/README.md +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/VERSION +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/docs/index.md +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/mkdocs.yml +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/pyproject.toml +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/src/[[ project_slug ]]/__init__.py +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/src/[[ project_slug ]]/py.typed +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/tests/conftest.py +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/tests/integration/test_placeholder.py +0 -0
- {templatepy-0.4.0 → templatepy-0.4.2}/template/tests/unit/test_placeholder.py +0 -0
|
@@ -9,9 +9,7 @@ authors:
|
|
|
9
9
|
- family-names: Rollik
|
|
10
10
|
given-names: Lars B.
|
|
11
11
|
orcid: https://orcid.org/0000-0003-0160-6971
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
# value: 10.5281/zenodo.XXXXXXX
|
|
17
|
-
# description: Zenodo concept DOI
|
|
12
|
+
identifiers:
|
|
13
|
+
- type: doi
|
|
14
|
+
value: 10.5281/zenodo.20360320
|
|
15
|
+
description: Zenodo concept DOI (resolves to latest version)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: templatepy
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: Copier template for modern Python packages
|
|
5
5
|
Project-URL: Homepage, https://github.com/larsrollik/templatepy
|
|
6
6
|
Project-URL: Documentation, https://larsrollik.github.io/templatepy
|
|
@@ -16,6 +16,8 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
|
|
17
17
|
# templatepy
|
|
18
18
|
|
|
19
|
+
[](https://doi.org/10.5281/zenodo.20360320)
|
|
20
|
+
|
|
19
21
|
Copier template for modern Python packages.
|
|
20
22
|
|
|
21
23
|
**[→ Full documentation](https://larsrollik.github.io/templatepy)**
|
templatepy-0.4.2/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.4.2
|
|
@@ -40,7 +40,7 @@ include = ["src", "copier.yaml", "template", "CITATION.cff", "README.md", "VERSI
|
|
|
40
40
|
|
|
41
41
|
[tool.commitizen]
|
|
42
42
|
version_provider = "commitizen"
|
|
43
|
-
version = "0.4.
|
|
43
|
+
version = "0.4.2"
|
|
44
44
|
version_files = ["VERSION"]
|
|
45
45
|
tag_format = "v$version"
|
|
46
46
|
update_changelog_on_bump = false
|
templatepy-0.4.0/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.4.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|