oe-python-template 0.6.35__tar.gz → 0.7.0__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.
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/PKG-INFO +2 -8
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/README.md +1 -7
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/pyproject.toml +2 -2
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/.gitignore +0 -0
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/LICENSE +0 -0
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/src/oe_python_template/__init__.py +0 -0
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/src/oe_python_template/api.py +0 -0
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/src/oe_python_template/cli.py +0 -0
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/src/oe_python_template/constants.py +0 -0
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/src/oe_python_template/models.py +0 -0
- {oe_python_template-0.6.35 → oe_python_template-0.7.0}/src/oe_python_template/service.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: oe-python-template
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: 🧠 Copier template to scaffold Python projects compliant with best practices and modern tooling.
|
|
5
5
|
Project-URL: Homepage, https://oe-python-template.readthedocs.io/en/latest/
|
|
6
6
|
Project-URL: Documentation, https://oe-python-template.readthedocs.io/en/latest/
|
|
@@ -159,9 +159,7 @@ To generate a new project, follow these steps:
|
|
|
159
159
|
|
|
160
160
|
**Step 1**: Install homebrew, uv package manager amd further tools. Copy the following code into your terminal and execute it.
|
|
161
161
|
```shell
|
|
162
|
-
if [[ "$OSTYPE" == "
|
|
163
|
-
# Nothing specific yet
|
|
164
|
-
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then # Install Linux specifics
|
|
162
|
+
if [[ "$OSTYPE" == "linux-gnu"* ]]; then # Install Linux specifics
|
|
165
163
|
sudo apt-get update -y && sudo apt-get install curl -y # https://curl.se/
|
|
166
164
|
fi
|
|
167
165
|
if ! command -v brew &> /dev/null; then # https://brew.sh/
|
|
@@ -177,15 +175,11 @@ which libxml2 &> /dev/null || brew install libxml2 # https://en.wikipedia
|
|
|
177
175
|
which act &> /dev/null || brew install act # https://nektosact.com/
|
|
178
176
|
which pinact &> /dev/null || brew install pinact # https://github.com/suzuki-shunsuke/pinact
|
|
179
177
|
if [[ "$OSTYPE" == "darwin"* ]]; then # Install macOS specifics
|
|
180
|
-
# Nothing specific yet
|
|
181
|
-
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then # Install Linux specifics
|
|
182
178
|
which pinentry-mac &> /dev/null || brew install gnupg # https://github.com/GPGTools/pinentry
|
|
183
179
|
fi
|
|
184
180
|
uv tool install copier # https://copier.readthedocs.io/en/stable/
|
|
185
181
|
```
|
|
186
182
|
|
|
187
|
-
Notes:
|
|
188
|
-
|
|
189
183
|
**Step 2**: [Create a repository on GitHub](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-new-repository), clone to your local machine, and change into it's directory.
|
|
190
184
|
|
|
191
185
|
**Step 3**: Generate the project. Copy
|
|
@@ -98,9 +98,7 @@ To generate a new project, follow these steps:
|
|
|
98
98
|
|
|
99
99
|
**Step 1**: Install homebrew, uv package manager amd further tools. Copy the following code into your terminal and execute it.
|
|
100
100
|
```shell
|
|
101
|
-
if [[ "$OSTYPE" == "
|
|
102
|
-
# Nothing specific yet
|
|
103
|
-
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then # Install Linux specifics
|
|
101
|
+
if [[ "$OSTYPE" == "linux-gnu"* ]]; then # Install Linux specifics
|
|
104
102
|
sudo apt-get update -y && sudo apt-get install curl -y # https://curl.se/
|
|
105
103
|
fi
|
|
106
104
|
if ! command -v brew &> /dev/null; then # https://brew.sh/
|
|
@@ -116,15 +114,11 @@ which libxml2 &> /dev/null || brew install libxml2 # https://en.wikipedia
|
|
|
116
114
|
which act &> /dev/null || brew install act # https://nektosact.com/
|
|
117
115
|
which pinact &> /dev/null || brew install pinact # https://github.com/suzuki-shunsuke/pinact
|
|
118
116
|
if [[ "$OSTYPE" == "darwin"* ]]; then # Install macOS specifics
|
|
119
|
-
# Nothing specific yet
|
|
120
|
-
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then # Install Linux specifics
|
|
121
117
|
which pinentry-mac &> /dev/null || brew install gnupg # https://github.com/GPGTools/pinentry
|
|
122
118
|
fi
|
|
123
119
|
uv tool install copier # https://copier.readthedocs.io/en/stable/
|
|
124
120
|
```
|
|
125
121
|
|
|
126
|
-
Notes:
|
|
127
|
-
|
|
128
122
|
**Step 2**: [Create a repository on GitHub](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-new-repository), clone to your local machine, and change into it's directory.
|
|
129
123
|
|
|
130
124
|
**Step 3**: Generate the project. Copy
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "oe-python-template"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.7.0"
|
|
4
4
|
description = "🧠 Copier template to scaffold Python projects compliant with best practices and modern tooling."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -253,7 +253,7 @@ source = ["src/"]
|
|
|
253
253
|
|
|
254
254
|
|
|
255
255
|
[tool.bumpversion]
|
|
256
|
-
current_version = "0.
|
|
256
|
+
current_version = "0.7.0"
|
|
257
257
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
|
258
258
|
serialize = ["{major}.{minor}.{patch}"]
|
|
259
259
|
search = "{current_version}"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|