vjer 30.0.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.
vjer-30.0.0/.DS_Store ADDED
Binary file
@@ -0,0 +1,76 @@
1
+ name: Vjer Build
2
+ on:
3
+ push:
4
+ pull_request:
5
+ workflow_dispatch:
6
+ concurrency:
7
+ group: ${{ github.head_ref || github.run_id }}
8
+ cancel-in-progress: true
9
+
10
+ env:
11
+ ARTIFACTS_DIR: dist
12
+ PYTHON_BUILD_VER: "3.11"
13
+ UNIT_TEST_DIR: unit_test_results
14
+ VIRTUAL_ENV: venv
15
+
16
+ jobs:
17
+ static-analysis:
18
+ runs-on: ubuntu-latest
19
+ strategy:
20
+ matrix:
21
+ python-version:
22
+ - "3.11"
23
+ - "3.12"
24
+ steps:
25
+ - uses: actions/checkout@v4
26
+ - uses: actions/setup-python@v4
27
+ with:
28
+ python-version: ${{ matrix.python-version }}
29
+ cache: "pip"
30
+ - uses: actions/cache@v3
31
+ with:
32
+ path: ${{ env.VIRTUAL_ENV }}
33
+ key: pip-${{ runner.os }}-${{ matrix.python-version }}
34
+ - run: cicd-support/cicd.sh "${{ github.job }}"
35
+
36
+ build:
37
+ needs:
38
+ - static-analysis
39
+ runs-on: ubuntu-latest
40
+ steps:
41
+ - uses: actions/checkout@v4
42
+ - uses: actions/setup-python@v4
43
+ with:
44
+ python-version: ${{ env.PYTHON_BUILD_VER }}
45
+ cache: "pip"
46
+ - uses: actions/cache@v3
47
+ with:
48
+ path: ${{ env.VIRTUAL_ENV }}
49
+ key: pip-${{ runner.os }}-${{ env.PYTHON_BUILD_VER }}
50
+ - run: cicd-support/cicd.sh "${{ github.job }}"
51
+ - uses: actions/upload-artifact@v4
52
+ with:
53
+ name: ${{ env.ARTIFACTS_DIR }}
54
+ path: ${{ env.ARTIFACTS_DIR }}
55
+
56
+ install-test:
57
+ needs: build
58
+ runs-on: ubuntu-latest
59
+ steps:
60
+ - uses: actions/checkout@v4
61
+ - uses: actions/setup-python@v4
62
+ with:
63
+ python-version: ${{ env.PYTHON_BUILD_VER }}
64
+ - uses: actions/download-artifact@v4
65
+ - uses: actions/cache@v3
66
+ with:
67
+ path: ${{ env.VIRTUAL_ENV }}
68
+ key: pip-${{ runner.os }}-${{ env.PYTHON_BUILD_VER }}
69
+ - run: cicd-support/cicd.sh "${{ github.job }}"
70
+
71
+ show-run-id:
72
+ runs-on: ubuntu-latest
73
+ steps:
74
+ - run: echo ${{ github.run_id }}
75
+
76
+ # cSpell:ignore vjer venv
@@ -0,0 +1,70 @@
1
+ name: Vjer Publish
2
+ on:
3
+ workflow_dispatch:
4
+ inputs:
5
+ run_id:
6
+ description: The run to publish
7
+ required: true
8
+ type: number
9
+ concurrency:
10
+ group: ${{ github.head_ref || github.run_id }}
11
+ cancel-in-progress: true
12
+
13
+ env:
14
+ ARTIFACTS_DIR: dist
15
+ GIT_AUTHOR_NAME: "${{ github.triggering_actor }}"
16
+ GIT_AUTHOR_EMAIL: "${{ github.triggering_actor }}@users.noreply.github.com"
17
+ PYTHON_BUILD_VER: "3.11"
18
+ VIRTUAL_ENV: venv
19
+
20
+ jobs:
21
+ publish-test:
22
+ runs-on: ubuntu-latest
23
+ environment: Staging
24
+ permissions:
25
+ contents: write
26
+ id-token: write
27
+ steps:
28
+ - uses: actions/checkout@v4
29
+ - uses: actions/setup-python@v4
30
+ with:
31
+ python-version: ${{ env.PYTHON_BUILD_VER }}
32
+ - uses: actions/cache@v3
33
+ with:
34
+ path: ${{ env.VIRTUAL_ENV }}
35
+ key: pip-${{ runner.os }}-${{ matrix.python-version }}
36
+ - uses: actions/download-artifact@v4
37
+ with:
38
+ run-id: ${{ github.event.inputs.run_id }}
39
+ github-token: ${{ secrets.ARTIFACT_TOKEN }}
40
+ - uses: pypa/gh-action-pypi-publish@release/v1
41
+ with:
42
+ repository-url: https://test.pypi.org/legacy/
43
+ - run: cicd-support/cicd.sh "${{ github.job }}"
44
+
45
+ publish:
46
+ needs: publish-test
47
+ runs-on: ubuntu-latest
48
+ environment: Production
49
+ permissions:
50
+ contents: write
51
+ id-token: write
52
+ env:
53
+ GH_TOKEN: ${{ github.token }}
54
+ steps:
55
+ - uses: actions/checkout@v4
56
+ - uses: actions/setup-python@v4
57
+ with:
58
+ python-version: ${{ env.PYTHON_BUILD_VER }}
59
+ - uses: actions/cache@v3
60
+ with:
61
+ path: ${{ env.VIRTUAL_ENV }}
62
+ key: pip-${{ runner.os }}-${{ matrix.python-version }}
63
+ - run: cicd-support/cicd.sh "${{ github.job }}"
64
+ - uses: pypa/gh-action-pypi-publish@release/v1
65
+ - uses: actions/upload-artifact@v4
66
+ with:
67
+ name: ${{ env.ARTIFACTS_DIR }}
68
+ path: ${{ env.ARTIFACTS_DIR }}
69
+
70
+ # cSpell:ignore bumpver vjer noreply venv pypa pypi
vjer-30.0.0/.gitignore ADDED
@@ -0,0 +1,243 @@
1
+ # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2
+ # Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python,git
3
+ # Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,python,git
4
+
5
+ ### Git ###
6
+ # Created by git for backups. To disable backups in Git:
7
+ # $ git config --global mergetool.keepBackup false
8
+ *.orig
9
+
10
+ # Created by git when using merge tools for conflicts
11
+ *.BACKUP.*
12
+ *.BASE.*
13
+ *.LOCAL.*
14
+ *.REMOTE.*
15
+ *_BACKUP_*.txt
16
+ *_BASE_*.txt
17
+ *_LOCAL_*.txt
18
+ *_REMOTE_*.txt
19
+
20
+ ### Python ###
21
+ # Byte-compiled / optimized / DLL files
22
+ __pycache__/
23
+ *.py[cod]
24
+ *$py.class
25
+
26
+ # C extensions
27
+ *.so
28
+
29
+ # Distribution / packaging
30
+ .Python
31
+ build/
32
+ develop-eggs/
33
+ dist/
34
+ downloads/
35
+ eggs/
36
+ .eggs/
37
+ lib/
38
+ lib64/
39
+ parts/
40
+ sdist/
41
+ var/
42
+ wheels/
43
+ share/python-wheels/
44
+ *.egg-info/
45
+ .installed.cfg
46
+ *.egg
47
+ MANIFEST
48
+
49
+ # PyInstaller
50
+ # Usually these files are written by a python script from a template
51
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
52
+ *.manifest
53
+ *.spec
54
+
55
+ # Installer logs
56
+ pip-log.txt
57
+ pip-delete-this-directory.txt
58
+
59
+ # Unit test / coverage reports
60
+ htmlcov/
61
+ .tox/
62
+ .nox/
63
+ .coverage
64
+ .coverage.*
65
+ .cache
66
+ nosetests.xml
67
+ coverage.xml
68
+ *.cover
69
+ *.py,cover
70
+ .hypothesis/
71
+ .pytest_cache/
72
+ cover/
73
+
74
+ # Translations
75
+ *.mo
76
+ *.pot
77
+
78
+ # Django stuff:
79
+ *.log
80
+ local_settings.py
81
+ db.sqlite3
82
+ db.sqlite3-journal
83
+
84
+ # Flask stuff:
85
+ instance/
86
+ .webassets-cache
87
+
88
+ # Scrapy stuff:
89
+ .scrapy
90
+
91
+ # Sphinx documentation
92
+ docs/_build/
93
+
94
+ # PyBuilder
95
+ .pybuilder/
96
+ target/
97
+
98
+ # Jupyter Notebook
99
+ .ipynb_checkpoints
100
+
101
+ # IPython
102
+ profile_default/
103
+ ipython_config.py
104
+
105
+ # pyenv
106
+ # For a library or package, you might want to ignore these files since the code is
107
+ # intended to run in multiple environments; otherwise, check them in:
108
+ # .python-version
109
+
110
+ # pipenv
111
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
112
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
113
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
114
+ # install all needed dependencies.
115
+ #Pipfile.lock
116
+
117
+ # poetry
118
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
119
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
120
+ # commonly ignored for libraries.
121
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
122
+ #poetry.lock
123
+
124
+ # pdm
125
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
126
+ #pdm.lock
127
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
128
+ # in version control.
129
+ # https://pdm.fming.dev/#use-with-ide
130
+ .pdm.toml
131
+
132
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
133
+ __pypackages__/
134
+
135
+ # Celery stuff
136
+ celerybeat-schedule
137
+ celerybeat.pid
138
+
139
+ # SageMath parsed files
140
+ *.sage.py
141
+
142
+ # Environments
143
+ .env
144
+ .venv
145
+ env/
146
+ venv/
147
+ ENV/
148
+ env.bak/
149
+ venv.bak/
150
+
151
+ # Spyder project settings
152
+ .spyderproject
153
+ .spyproject
154
+
155
+ # Rope project settings
156
+ .ropeproject
157
+
158
+ # mkdocs documentation
159
+ /site
160
+
161
+ # mypy
162
+ .mypy_cache/
163
+ .dmypy.json
164
+ dmypy.json
165
+
166
+ # Pyre type checker
167
+ .pyre/
168
+
169
+ # pytype static type analyzer
170
+ .pytype/
171
+
172
+ # Cython debug symbols
173
+ cython_debug/
174
+
175
+ # PyCharm
176
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
177
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
178
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
179
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
180
+ #.idea/
181
+
182
+ ### Python Patch ###
183
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
184
+ poetry.toml
185
+
186
+ # ruff
187
+ .ruff_cache/
188
+
189
+ # LSP config files
190
+ pyrightconfig.json
191
+
192
+ ### VisualStudioCode ###
193
+ .vscode/*
194
+ !.vscode/settings.json
195
+ !.vscode/tasks.json
196
+ !.vscode/launch.json
197
+ !.vscode/extensions.json
198
+ !.vscode/*.code-snippets
199
+
200
+ # Local History for Visual Studio Code
201
+ .history/
202
+
203
+ # Built Visual Studio Code Extensions
204
+ *.vsix
205
+
206
+ ### VisualStudioCode Patch ###
207
+ # Ignore all local history of files
208
+ .history
209
+ .ionide
210
+
211
+ ### Windows ###
212
+ # Windows thumbnail cache files
213
+ Thumbs.db
214
+ Thumbs.db:encryptable
215
+ ehthumbs.db
216
+ ehthumbs_vista.db
217
+
218
+ # Dump file
219
+ *.stackdump
220
+
221
+ # Folder config file
222
+ [Dd]esktop.ini
223
+
224
+ # Recycle Bin used on file shares
225
+ $RECYCLE.BIN/
226
+
227
+ # Windows Installer files
228
+ *.cab
229
+ *.msi
230
+ *.msix
231
+ *.msm
232
+ *.msp
233
+
234
+ # Windows shortcuts
235
+ *.lnk
236
+
237
+ # End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python,git
238
+
239
+ # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
240
+
241
+ .p4cfg
242
+ .git/
243
+ unit_test_results/
vjer-30.0.0/.p4ignore ADDED
@@ -0,0 +1,243 @@
1
+ # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2
+ # Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python,git
3
+ # Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,python,git
4
+
5
+ ### Git ###
6
+ # Created by git for backups. To disable backups in Git:
7
+ # $ git config --global mergetool.keepBackup false
8
+ *.orig
9
+
10
+ # Created by git when using merge tools for conflicts
11
+ *.BACKUP.*
12
+ *.BASE.*
13
+ *.LOCAL.*
14
+ *.REMOTE.*
15
+ *_BACKUP_*.txt
16
+ *_BASE_*.txt
17
+ *_LOCAL_*.txt
18
+ *_REMOTE_*.txt
19
+
20
+ ### Python ###
21
+ # Byte-compiled / optimized / DLL files
22
+ __pycache__/
23
+ *.py[cod]
24
+ *$py.class
25
+
26
+ # C extensions
27
+ *.so
28
+
29
+ # Distribution / packaging
30
+ .Python
31
+ build/
32
+ develop-eggs/
33
+ dist/
34
+ downloads/
35
+ eggs/
36
+ .eggs/
37
+ lib/
38
+ lib64/
39
+ parts/
40
+ sdist/
41
+ var/
42
+ wheels/
43
+ share/python-wheels/
44
+ *.egg-info/
45
+ .installed.cfg
46
+ *.egg
47
+ MANIFEST
48
+
49
+ # PyInstaller
50
+ # Usually these files are written by a python script from a template
51
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
52
+ *.manifest
53
+ *.spec
54
+
55
+ # Installer logs
56
+ pip-log.txt
57
+ pip-delete-this-directory.txt
58
+
59
+ # Unit test / coverage reports
60
+ htmlcov/
61
+ .tox/
62
+ .nox/
63
+ .coverage
64
+ .coverage.*
65
+ .cache
66
+ nosetests.xml
67
+ coverage.xml
68
+ *.cover
69
+ *.py,cover
70
+ .hypothesis/
71
+ .pytest_cache/
72
+ cover/
73
+
74
+ # Translations
75
+ *.mo
76
+ *.pot
77
+
78
+ # Django stuff:
79
+ *.log
80
+ local_settings.py
81
+ db.sqlite3
82
+ db.sqlite3-journal
83
+
84
+ # Flask stuff:
85
+ instance/
86
+ .webassets-cache
87
+
88
+ # Scrapy stuff:
89
+ .scrapy
90
+
91
+ # Sphinx documentation
92
+ docs/_build/
93
+
94
+ # PyBuilder
95
+ .pybuilder/
96
+ target/
97
+
98
+ # Jupyter Notebook
99
+ .ipynb_checkpoints
100
+
101
+ # IPython
102
+ profile_default/
103
+ ipython_config.py
104
+
105
+ # pyenv
106
+ # For a library or package, you might want to ignore these files since the code is
107
+ # intended to run in multiple environments; otherwise, check them in:
108
+ # .python-version
109
+
110
+ # pipenv
111
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
112
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
113
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
114
+ # install all needed dependencies.
115
+ #Pipfile.lock
116
+
117
+ # poetry
118
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
119
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
120
+ # commonly ignored for libraries.
121
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
122
+ #poetry.lock
123
+
124
+ # pdm
125
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
126
+ #pdm.lock
127
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
128
+ # in version control.
129
+ # https://pdm.fming.dev/#use-with-ide
130
+ .pdm.toml
131
+
132
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
133
+ __pypackages__/
134
+
135
+ # Celery stuff
136
+ celerybeat-schedule
137
+ celerybeat.pid
138
+
139
+ # SageMath parsed files
140
+ *.sage.py
141
+
142
+ # Environments
143
+ .env
144
+ .venv
145
+ env/
146
+ venv/
147
+ ENV/
148
+ env.bak/
149
+ venv.bak/
150
+
151
+ # Spyder project settings
152
+ .spyderproject
153
+ .spyproject
154
+
155
+ # Rope project settings
156
+ .ropeproject
157
+
158
+ # mkdocs documentation
159
+ /site
160
+
161
+ # mypy
162
+ .mypy_cache/
163
+ .dmypy.json
164
+ dmypy.json
165
+
166
+ # Pyre type checker
167
+ .pyre/
168
+
169
+ # pytype static type analyzer
170
+ .pytype/
171
+
172
+ # Cython debug symbols
173
+ cython_debug/
174
+
175
+ # PyCharm
176
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
177
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
178
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
179
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
180
+ #.idea/
181
+
182
+ ### Python Patch ###
183
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
184
+ poetry.toml
185
+
186
+ # ruff
187
+ .ruff_cache/
188
+
189
+ # LSP config files
190
+ pyrightconfig.json
191
+
192
+ ### VisualStudioCode ###
193
+ .vscode/*
194
+ !.vscode/settings.json
195
+ !.vscode/tasks.json
196
+ !.vscode/launch.json
197
+ !.vscode/extensions.json
198
+ !.vscode/*.code-snippets
199
+
200
+ # Local History for Visual Studio Code
201
+ .history/
202
+
203
+ # Built Visual Studio Code Extensions
204
+ *.vsix
205
+
206
+ ### VisualStudioCode Patch ###
207
+ # Ignore all local history of files
208
+ .history
209
+ .ionide
210
+
211
+ ### Windows ###
212
+ # Windows thumbnail cache files
213
+ Thumbs.db
214
+ Thumbs.db:encryptable
215
+ ehthumbs.db
216
+ ehthumbs_vista.db
217
+
218
+ # Dump file
219
+ *.stackdump
220
+
221
+ # Folder config file
222
+ [Dd]esktop.ini
223
+
224
+ # Recycle Bin used on file shares
225
+ $RECYCLE.BIN/
226
+
227
+ # Windows Installer files
228
+ *.cab
229
+ *.msi
230
+ *.msix
231
+ *.msm
232
+ *.msp
233
+
234
+ # Windows shortcuts
235
+ *.lnk
236
+
237
+ # End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python,git
238
+
239
+ # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
240
+
241
+ .p4cfg
242
+ .git/
243
+ unit_test_results/
vjer-30.0.0/.pypirc ADDED
@@ -0,0 +1,10 @@
1
+ [distutils]
2
+ index-servers =
3
+ pypi
4
+ testpypi
5
+
6
+ [pypi]
7
+ repository = https://upload.pypi.org/legacy/
8
+
9
+ [testpypi]
10
+ repository = https://test.pypi.org/legacy/
@@ -0,0 +1,4 @@
1
+ version: 2
2
+
3
+ python:
4
+ version: "3.11"