templatepy 0.2.6__tar.gz → 0.2.7__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.
Files changed (24) hide show
  1. {templatepy-0.2.6 → templatepy-0.2.7}/.bumpversion.cfg +1 -1
  2. templatepy-0.2.7/.pre-commit-config.yaml +36 -0
  3. {templatepy-0.2.6 → templatepy-0.2.7}/PKG-INFO +2 -2
  4. {templatepy-0.2.6 → templatepy-0.2.7}/README.md +1 -1
  5. {templatepy-0.2.6 → templatepy-0.2.7}/pyproject.toml +1 -1
  6. {templatepy-0.2.6 → templatepy-0.2.7}/templatepy/__init__.py +1 -1
  7. {templatepy-0.2.6 → templatepy-0.2.7}/templatepy.egg-info/PKG-INFO +2 -2
  8. templatepy-0.2.6/.pre-commit-config.yaml +0 -27
  9. {templatepy-0.2.6 → templatepy-0.2.7}/.gitignore +0 -0
  10. {templatepy-0.2.6 → templatepy-0.2.7}/.secrets.baseline +0 -0
  11. {templatepy-0.2.6 → templatepy-0.2.7}/CODE_OF_CONDUCT.md +0 -0
  12. {templatepy-0.2.6 → templatepy-0.2.7}/CONTRIBUTING.md +0 -0
  13. {templatepy-0.2.6 → templatepy-0.2.7}/LICENSE +0 -0
  14. {templatepy-0.2.6 → templatepy-0.2.7}/MANIFEST.in +0 -0
  15. {templatepy-0.2.6 → templatepy-0.2.7}/setup.cfg +0 -0
  16. {templatepy-0.2.6 → templatepy-0.2.7}/setup.py +0 -0
  17. {templatepy-0.2.6 → templatepy-0.2.7}/templatepy/example.data.file.config +0 -0
  18. {templatepy-0.2.6 → templatepy-0.2.7}/templatepy/example.data.file.test-extension-yu48 +0 -0
  19. {templatepy-0.2.6 → templatepy-0.2.7}/templatepy.egg-info/SOURCES.txt +0 -0
  20. {templatepy-0.2.6 → templatepy-0.2.7}/templatepy.egg-info/dependency_links.txt +0 -0
  21. {templatepy-0.2.6 → templatepy-0.2.7}/templatepy.egg-info/entry_points.txt +0 -0
  22. {templatepy-0.2.6 → templatepy-0.2.7}/templatepy.egg-info/not-zip-safe +0 -0
  23. {templatepy-0.2.6 → templatepy-0.2.7}/templatepy.egg-info/requires.txt +0 -0
  24. {templatepy-0.2.6 → templatepy-0.2.7}/templatepy.egg-info/top_level.txt +0 -0
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 0.2.6
2
+ current_version = 0.2.7
3
3
  commit = True
4
4
  tag = False
5
5
  tag_name = v{new_version}
@@ -0,0 +1,36 @@
1
+ # Update versions with: pre-commit autoupdate
2
+ # Check for other available hooks: https://github.com/pre-commit/pre-commit-hooks
3
+ repos:
4
+ - repo: https://github.com/asottile/reorder_python_imports
5
+ rev: v3.14.0
6
+ hooks:
7
+ - id: reorder-python-imports
8
+
9
+ - repo: https://github.com/ambv/black
10
+ rev: 24.10.0
11
+ hooks:
12
+ - id: black
13
+
14
+ - repo: https://github.com/pre-commit/pre-commit-hooks
15
+ rev: v5.0.0
16
+ hooks:
17
+ - id: end-of-file-fixer
18
+ exclude: '.bumpversion.cfg'
19
+ - id: trailing-whitespace
20
+ exclude: '.bumpversion.cfg'
21
+ - id: check-case-conflict
22
+ - id: check-merge-conflict
23
+ - id: check-yaml
24
+ args: [ '--unsafe' ]
25
+ - id: debug-statements
26
+ - id: detect-private-key
27
+ - id: forbid-new-submodules
28
+ - id: check-json
29
+ - id: pretty-format-json
30
+ args: ['--autofix', '--indent=4', '--no-ensure-ascii']
31
+ - id: check-added-large-files
32
+
33
+ - repo: https://github.com/PyCQA/flake8
34
+ rev: 7.1.1
35
+ hooks:
36
+ - id: flake8
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: templatepy
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary: templatepy: Template repo for python repositories & PyPi integration
5
5
  Author-email: "Lars B. Rollik" <L.B.Rollik@protonmail.com>
6
6
  License: BSD 3-Clause License
@@ -92,7 +92,7 @@ Requires-Dist: toml; extra == "dev"
92
92
  # templatepy
93
93
  Template repo for python repositories & PyPi integration
94
94
  ---
95
- **Version: "0.2.6"**
95
+ **Version: "0.2.7"**
96
96
 
97
97
 
98
98
  ## Usage
@@ -35,7 +35,7 @@
35
35
  # templatepy
36
36
  Template repo for python repositories & PyPi integration
37
37
  ---
38
- **Version: "0.2.6"**
38
+ **Version: "0.2.7"**
39
39
 
40
40
 
41
41
  ## Usage
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "templatepy"
7
- version = "0.2.6"
7
+ version = "0.2.7"
8
8
  authors = [
9
9
  { name = "Lars B. Rollik", email = "L.B.Rollik@protonmail.com" }
10
10
  ]
@@ -1,5 +1,5 @@
1
1
  __author__ = "Lars B. Rollik"
2
- __version__ = "0.2.6"
2
+ __version__ = "0.2.7"
3
3
 
4
4
 
5
5
  def run():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: templatepy
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary: templatepy: Template repo for python repositories & PyPi integration
5
5
  Author-email: "Lars B. Rollik" <L.B.Rollik@protonmail.com>
6
6
  License: BSD 3-Clause License
@@ -92,7 +92,7 @@ Requires-Dist: toml; extra == "dev"
92
92
  # templatepy
93
93
  Template repo for python repositories & PyPi integration
94
94
  ---
95
- **Version: "0.2.6"**
95
+ **Version: "0.2.7"**
96
96
 
97
97
 
98
98
  ## Usage
@@ -1,27 +0,0 @@
1
- repos:
2
- - repo: https://github.com/asottile/reorder_python_imports
3
- rev: v2.6.0
4
- hooks:
5
- - id: reorder-python-imports
6
- - repo: https://github.com/ambv/black
7
- rev: 22.6.0
8
- hooks:
9
- - id: black
10
- - repo: https://github.com/pre-commit/pre-commit-hooks
11
- rev: v2.3.0
12
- hooks:
13
- - id: end-of-file-fixer
14
- exclude: '.bumpversion.cfg'
15
- - id: trailing-whitespace
16
- exclude: '.bumpversion.cfg'
17
- - id: check-case-conflict
18
- - id: check-merge-conflict
19
- - id: check-yaml
20
- args: [ '--unsafe' ]
21
- - id: detect-private-key
22
- - id: forbid-new-submodules
23
- - id: check-json
24
- - id: pretty-format-json
25
- args: ['--autofix', '--indent=4', '--no-ensure-ascii', ]
26
- - id: check-added-large-files
27
- - id: flake8
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes