omnipull-url-processor 0.1.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.
Binary file
@@ -0,0 +1,64 @@
1
+ name: Build and Publish Rust Extension
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ tags: ['v*'] # Now every tag in this repo is a Rust release
7
+
8
+ jobs:
9
+ build:
10
+ runs-on: ${{ matrix.os }}
11
+ strategy:
12
+ matrix:
13
+ os: [ubuntu-latest, windows-latest, macos-latest]
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: Build wheels
17
+ uses: PyO3/maturin-action@v1
18
+ with:
19
+ command: build
20
+ args: --release --out dist
21
+ # REMOVED: working-directory (files are at root now)
22
+
23
+ - name: Upload wheels
24
+ uses: actions/upload-artifact@v4
25
+ with:
26
+ name: wheels-${{ matrix.os }}
27
+ path: dist # Updated path to root dist
28
+
29
+ sdist:
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ - uses: actions/checkout@v4
33
+ - name: Build sdist
34
+ uses: PyO3/maturin-action@v1
35
+ with:
36
+ command: sdist
37
+ args: --out dist
38
+ - name: Upload sdist
39
+ uses: actions/upload-artifact@v4
40
+ with:
41
+ name: sdist
42
+ path: dist
43
+
44
+ publish:
45
+ name: Publish to PyPI
46
+ runs-on: ubuntu-latest
47
+ if: startsWith(github.ref, 'refs/tags/')
48
+ needs: [build, sdist]
49
+ environment:
50
+ name: pypi
51
+ url: https://pypi.org/p/omnipull-url-processor
52
+ permissions:
53
+ id-token: write
54
+ steps:
55
+ - uses: actions/download-artifact@v4
56
+ with:
57
+ pattern: '*'
58
+ merge-multiple: true
59
+ path: dist
60
+ - name: Publish to PyPI
61
+ uses: PyO3/maturin-action@v1
62
+ with:
63
+ command: upload
64
+ args: --non-interactive --skip-existing dist/*
@@ -0,0 +1,199 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ .bootstrap
28
+ MANIFEST
29
+
30
+ # PyInstaller
31
+ # Usually these files are written by a python script from a template
32
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
33
+ *.manifest
34
+ *.spec
35
+
36
+ # Installer logs
37
+ pip-log.txt
38
+ pip-delete-this-directory.txt
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+ cover/
54
+
55
+ # Translations
56
+ *.mo
57
+ *.pot
58
+
59
+ # Django stuff:
60
+ *.log
61
+ local_settings.py
62
+ db.sqlite3
63
+ db.sqlite3-journal
64
+
65
+ # Flask stuff:
66
+ instance/
67
+ .webassets-cache
68
+
69
+ # Scrapy stuff:
70
+ .scrapy
71
+
72
+ # Sphinx documentation
73
+ docs/_build/
74
+
75
+ # PyBuilder
76
+ .pybuilder/
77
+ target/
78
+
79
+ # Jupyter Notebook
80
+ .ipynb_checkpoints
81
+
82
+ # IPython
83
+ profile_default/
84
+ ipython_config.py
85
+
86
+ # pyenv
87
+ # For a library or package, you might want to ignore these files since the code is
88
+ # intended to run in multiple environments; otherwise, check them in:
89
+ # .python-version
90
+
91
+ # pipenv
92
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
94
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
95
+ # install all needed dependencies.
96
+ #Pipfile.lock
97
+
98
+ # poetry
99
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
100
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
101
+ # commonly ignored for libraries.
102
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
103
+ #poetry.lock
104
+
105
+ # pdm
106
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
107
+ #pdm.lock
108
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
109
+ # in version control.
110
+ # https://pdm-project.org/#use-with-ide
111
+ .pdm.toml
112
+ .pdm-python
113
+ .pdm-build/
114
+
115
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
116
+ __pypackages__/
117
+
118
+ # Celery stuff
119
+ celerybeat-schedule
120
+ celerybeat.pid
121
+
122
+ # SageMath parsed files
123
+ *.sage.py
124
+
125
+ # Environments
126
+ .env
127
+ .venv
128
+ env/
129
+ venv/
130
+ ENV/
131
+ env.bak/
132
+ venv.bak/
133
+
134
+ # Spyder project settings
135
+ .spyderproject
136
+ .spyproject
137
+
138
+ # Rope project settings
139
+ .ropeproject
140
+
141
+ # mkdocs documentation
142
+ /site
143
+
144
+ # mypy
145
+ .mypy_cache/
146
+ .dmypy.json
147
+ dmypy.json
148
+
149
+ # Pyre type checker
150
+ .pyre/
151
+
152
+ # pytype static type analyzer
153
+ .pytype/
154
+
155
+ # Cython debug symbols
156
+ cython_debug/
157
+
158
+ # PyCharm
159
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
160
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
161
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
162
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
163
+ #.idea/
164
+
165
+
166
+
167
+
168
+ Lin_Exec
169
+ Linux/package/
170
+
171
+ Linux/omnipull*
172
+ Linux/.pkgmeta/
173
+ Linux/squashfs-root/
174
+ Linux/build_ffmpeg.sh
175
+ Linux/build-portable-appimage.sh
176
+ Linux/build-standalone-deb.sh
177
+ Linux/cleanup_omnipull.sh
178
+ Linux/omniwatcher.json
179
+ Linux/setup.json
180
+ Linux/uninstall.sh
181
+ Linux/update.sh
182
+ Linux/package.sh
183
+ Linux/setup.json
184
+ Linux/all_package.sh
185
+ Linux/build.sh
186
+ Linux/omnipull.desktop
187
+
188
+ Linux/omnipull-v_1.2.24_amd64.deb
189
+
190
+
191
+ .github/workflows/Build_macos_universal.yml
192
+ macOS/.build-intel
193
+ master
194
+ omnipull_native_host_standalone.exe
195
+ rust_updater_helper/
196
+ build_nuitka/
197
+
198
+
199
+ target/