pycrucible 0.3.0__py3-none-win_amd64.whl → 0.3.6__py3-none-win_amd64.whl
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.
- {pycrucible-0.3.0.data → pycrucible-0.3.6.data}/scripts/pycrucible.exe +0 -0
- {pycrucible-0.3.0.dist-info → pycrucible-0.3.6.dist-info}/METADATA +35 -10
- pycrucible-0.3.6.dist-info/RECORD +5 -0
- {pycrucible-0.3.0.dist-info → pycrucible-0.3.6.dist-info}/WHEEL +1 -1
- pycrucible-0.3.0.dist-info/RECORD +0 -5
- {pycrucible-0.3.0.dist-info → pycrucible-0.3.6.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pycrucible
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
4
4
|
Classifier: Programming Language :: Python :: 3
|
|
5
5
|
Classifier: Programming Language :: Rust
|
|
6
6
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -26,16 +26,20 @@ This tool runs a Python application using the UV binary. It extracts your applic
|
|
|
26
26
|
## What does this mean?
|
|
27
27
|
You get a single self-contained binary that can be distributed across machines running the same platform. No Python installation is required - just an internet connection. Run the executable, and it takes care of the rest.
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
> You can see all the changes in [CHANGELOG FILE](https://github.com/razorblade23/PyCrucible/blob/main/CHANGELOG.md).
|
|
29
|
+
# Community
|
|
30
|
+
You can visit our community group on Telegram
|
|
31
|
+
[PyCrucible Telegram Community](https://t.me/PyCrucibleCommunity)
|
|
33
32
|
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
# Changelog
|
|
34
|
+
You can see latest changes at [CHANGELOG FILE](https://github.com/razorblade23/PyCrucible/blob/main/CHANGELOG.md).
|
|
35
|
+
|
|
36
|
+
# Github Action
|
|
37
|
+
PyCrucible has associated GitHub Action workflow which you can use to embed your python applications directly in CI.
|
|
38
|
+
[GitHub Action marketplace](https://github.com/marketplace/actions/build-python-app-with-pycrucible).
|
|
39
|
+
[GitHub Repository](https://github.com/razorblade23/pycrucible-action)
|
|
36
40
|
|
|
37
41
|
## Documentation
|
|
38
|
-
|
|
42
|
+
Documentation can be found at [PyCrucible docs](https://pycrucible.razorblade23.dev).
|
|
39
43
|
|
|
40
44
|
## How to get `PyCrucible`
|
|
41
45
|
There are a couple of ways to get PyCrucible.
|
|
@@ -135,7 +139,7 @@ debug = false
|
|
|
135
139
|
extract_to_temp = false
|
|
136
140
|
delete_after_run = false
|
|
137
141
|
|
|
138
|
-
[
|
|
142
|
+
[patterns]
|
|
139
143
|
include = [
|
|
140
144
|
"**/*.py",
|
|
141
145
|
]
|
|
@@ -182,6 +186,12 @@ pre_run = "some_script.py"
|
|
|
182
186
|
post_run = "some_other_script.py"
|
|
183
187
|
```
|
|
184
188
|
|
|
189
|
+
> [!TIP]
|
|
190
|
+
> You can use `patterns` to include or exclude any arbitrary files, like HTML templates, Kivy layout files or any other arbitrary files needed for your application.
|
|
191
|
+
|
|
192
|
+
> [!IMPORTANT]
|
|
193
|
+
> There is no need for setting `PYTHONPATH` env variable as `uv` will take care of this. If this is really needed, `uv` will complain and you should also also set `UV_LINK_MODE="copy"` as env variable to mitigate the warning.
|
|
194
|
+
|
|
185
195
|
### Update your project from GitHub
|
|
186
196
|
In configuration file its possible to set your GitHub repository, so the resulting binary will always check for update before running the application.
|
|
187
197
|
|
|
@@ -236,6 +246,20 @@ hooks = None
|
|
|
236
246
|
If any of these configuration options is not used, it will be replaced with default value.
|
|
237
247
|
#### NOTE - `entrypoint` directive is required when using any configuration options.
|
|
238
248
|
|
|
249
|
+
## Security / Code signing
|
|
250
|
+
For users who want to verify the authenticity of the `builder` binary, we recommend code signing. This ensures that the binary you download has not been tampered with.
|
|
251
|
+
Code signing will be automatic in next release of `PyCrucible`.
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
The `builder` is the only distributed artifact; the Python projects themselves are provided by users at runtime.
|
|
255
|
+
|
|
256
|
+
Signing the builder ensures the binary is authentic.
|
|
257
|
+
|
|
258
|
+
Generated self-contained binaries (created by the builder) are not pre-signed — users may optionally sign them for their own distribution.
|
|
259
|
+
|
|
260
|
+
> [!IMPORTANT]
|
|
261
|
+
> Make sure you run code signing **after** embedding your project. This makes sure that embedded project also be part of the signiture.
|
|
262
|
+
|
|
239
263
|
## Features
|
|
240
264
|
- **Cross-Platform**:
|
|
241
265
|
- [x] Windows support
|
|
@@ -268,4 +292,5 @@ If any of these configuration options is not used, it will be replaced with defa
|
|
|
268
292
|
The idea is inspired by [Packaged](https://packaged.live/).
|
|
269
293
|
|
|
270
294
|
Thanks to all the briliant developers at `Astral`.
|
|
271
|
-
They did awesome job with [uv](https://astral.sh/blog/uv).
|
|
295
|
+
They did awesome job with [uv](https://astral.sh/blog/uv).
|
|
296
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
pycrucible-0.3.6.data/scripts/pycrucible.exe,sha256=hf9dPmnFf65PPm3dRBiVXiNjerJHIlxEX-YN51AN-Qw,5092864
|
|
2
|
+
pycrucible-0.3.6.dist-info/METADATA,sha256=ttLVWKzwoJmNZEsFNrNpCFMTuT2RIJGS_LAm_C2YreU,9687
|
|
3
|
+
pycrucible-0.3.6.dist-info/WHEEL,sha256=nq3lkKW9_ylFdpeg5sUax_PDiAfrieKzAXES02b7P68,94
|
|
4
|
+
pycrucible-0.3.6.dist-info/licenses/LICENSE,sha256=1mKlWQzjtJbLuK-6mzMhwomUm2wTeOPVMBZUGYp4tSE,966
|
|
5
|
+
pycrucible-0.3.6.dist-info/RECORD,,
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
pycrucible-0.3.0.data/scripts/pycrucible.exe,sha256=otIXw6YNUmC_Rqx_PnzG_HC1Q2lwB4BIvt20BSvtB7Y,5093376
|
|
2
|
-
pycrucible-0.3.0.dist-info/METADATA,sha256=moQ87txeIwx86SJG_FclIEJzynaHC5y7XmE0B49H5HY,8314
|
|
3
|
-
pycrucible-0.3.0.dist-info/WHEEL,sha256=T1-x9ZAB-aE3ewIGbYuockW5ywV7fI-Nla9FsiR1vW4,93
|
|
4
|
-
pycrucible-0.3.0.dist-info/licenses/LICENSE,sha256=1mKlWQzjtJbLuK-6mzMhwomUm2wTeOPVMBZUGYp4tSE,966
|
|
5
|
-
pycrucible-0.3.0.dist-info/RECORD,,
|
|
File without changes
|