effectual 0.7.4__tar.gz → 0.7.5__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.
- {effectual-0.7.4 → effectual-0.7.5}/PKG-INFO +10 -2
- {effectual-0.7.4 → effectual-0.7.5}/README.md +9 -1
- {effectual-0.7.4 → effectual-0.7.5}/pyproject.toml +1 -1
- {effectual-0.7.4 → effectual-0.7.5}/src/effectual/developer.py +1 -1
- {effectual-0.7.4 → effectual-0.7.5}/uv.lock +20 -20
- {effectual-0.7.4 → effectual-0.7.5}/.gitignore +0 -0
- {effectual-0.7.4 → effectual-0.7.5}/.python-version +0 -0
- {effectual-0.7.4 → effectual-0.7.5}/LICENSE +0 -0
- {effectual-0.7.4 → effectual-0.7.5}/src/effectual/__init__.py +0 -0
- {effectual-0.7.4 → effectual-0.7.5}/src/effectual/build.py +0 -0
- {effectual-0.7.4 → effectual-0.7.5}/src/effectual/colors.py +0 -0
- {effectual-0.7.4 → effectual-0.7.5}/src/effectual/config.py +0 -0
- {effectual-0.7.4 → effectual-0.7.5}/src/effectual/transformations.py +0 -0
- {effectual-0.7.4 → effectual-0.7.5}/taskfile.yml +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: effectual
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.5
|
4
4
|
Summary: A python package/script bundler
|
5
5
|
Project-URL: Homepage, https://github.com/effectualpy/effectual
|
6
6
|
Author-email: jake <jakewdr@proton.me>
|
@@ -36,7 +36,11 @@ Sometimes you want a single portable python file without having to make a platfo
|
|
36
36
|
|
37
37
|
# Setup
|
38
38
|
|
39
|
-
|
39
|
+
First make sure you have [uv installed](https://docs.astral.sh/uv/getting-started/installation/#installation-methods) and updated:
|
40
|
+
|
41
|
+
uv self update
|
42
|
+
|
43
|
+
Furthermore if you haven't already created a project run:
|
40
44
|
|
41
45
|
uv init
|
42
46
|
|
@@ -58,6 +62,10 @@ compressionLevel = 5
|
|
58
62
|
|
59
63
|
Note you must have a \_\_main\_\_.py entrypoint for this to work
|
60
64
|
|
65
|
+
## Template
|
66
|
+
|
67
|
+
If you want a simple minimal setup process then just use the [effectual-template](https://github.com/effectualpy/effectual-template)
|
68
|
+
|
61
69
|
# Bundling
|
62
70
|
|
63
71
|
## Development
|
@@ -13,7 +13,11 @@ Sometimes you want a single portable python file without having to make a platfo
|
|
13
13
|
|
14
14
|
# Setup
|
15
15
|
|
16
|
-
|
16
|
+
First make sure you have [uv installed](https://docs.astral.sh/uv/getting-started/installation/#installation-methods) and updated:
|
17
|
+
|
18
|
+
uv self update
|
19
|
+
|
20
|
+
Furthermore if you haven't already created a project run:
|
17
21
|
|
18
22
|
uv init
|
19
23
|
|
@@ -35,6 +39,10 @@ compressionLevel = 5
|
|
35
39
|
|
36
40
|
Note you must have a \_\_main\_\_.py entrypoint for this to work
|
37
41
|
|
42
|
+
## Template
|
43
|
+
|
44
|
+
If you want a simple minimal setup process then just use the [effectual-template](https://github.com/effectualpy/effectual-template)
|
45
|
+
|
38
46
|
# Bundling
|
39
47
|
|
40
48
|
## Development
|
@@ -41,7 +41,7 @@ def main() -> None:
|
|
41
41
|
bundle(sourceDirectory, outputFile)
|
42
42
|
runCommand = subprocess.Popen(["uv", "run", outputFile], shell=True)
|
43
43
|
|
44
|
-
for change in watch(sourceDirectory):
|
44
|
+
for change in watch(sourceDirectory, debounce=50):
|
45
45
|
print(f"{tagColor('reloaded')} || file change detected")
|
46
46
|
runCommand.kill()
|
47
47
|
runCommand.wait()
|
@@ -39,7 +39,7 @@ wheels = [
|
|
39
39
|
|
40
40
|
[[package]]
|
41
41
|
name = "effectual"
|
42
|
-
version = "0.7.
|
42
|
+
version = "0.7.5"
|
43
43
|
source = { editable = "." }
|
44
44
|
dependencies = [
|
45
45
|
{ name = "click" },
|
@@ -224,27 +224,27 @@ wheels = [
|
|
224
224
|
|
225
225
|
[[package]]
|
226
226
|
name = "ruff"
|
227
|
-
version = "0.8.
|
227
|
+
version = "0.8.3"
|
228
228
|
source = { registry = "https://pypi.org/simple" }
|
229
|
-
sdist = { url = "https://files.pythonhosted.org/packages/5e/
|
229
|
+
sdist = { url = "https://files.pythonhosted.org/packages/bf/5e/683c7ef7a696923223e7d95ca06755d6e2acbc5fd8382b2912a28008137c/ruff-0.8.3.tar.gz", hash = "sha256:5e7558304353b84279042fc584a4f4cb8a07ae79b2bf3da1a7551d960b5626d3", size = 3378522 }
|
230
230
|
wheels = [
|
231
|
-
{ url = "https://files.pythonhosted.org/packages/
|
232
|
-
{ url = "https://files.pythonhosted.org/packages/
|
233
|
-
{ url = "https://files.pythonhosted.org/packages/
|
234
|
-
{ url = "https://files.pythonhosted.org/packages/
|
235
|
-
{ url = "https://files.pythonhosted.org/packages/
|
236
|
-
{ url = "https://files.pythonhosted.org/packages/
|
237
|
-
{ url = "https://files.pythonhosted.org/packages/
|
238
|
-
{ url = "https://files.pythonhosted.org/packages/
|
239
|
-
{ url = "https://files.pythonhosted.org/packages/
|
240
|
-
{ url = "https://files.pythonhosted.org/packages/
|
241
|
-
{ url = "https://files.pythonhosted.org/packages/
|
242
|
-
{ url = "https://files.pythonhosted.org/packages/
|
243
|
-
{ url = "https://files.pythonhosted.org/packages/
|
244
|
-
{ url = "https://files.pythonhosted.org/packages/
|
245
|
-
{ url = "https://files.pythonhosted.org/packages/
|
246
|
-
{ url = "https://files.pythonhosted.org/packages/
|
247
|
-
{ url = "https://files.pythonhosted.org/packages/
|
231
|
+
{ url = "https://files.pythonhosted.org/packages/f8/c4/bfdbb8b9c419ff3b52479af8581026eeaac3764946fdb463dec043441b7d/ruff-0.8.3-py3-none-linux_armv6l.whl", hash = "sha256:8d5d273ffffff0acd3db5bf626d4b131aa5a5ada1276126231c4174543ce20d6", size = 10535860 },
|
232
|
+
{ url = "https://files.pythonhosted.org/packages/ef/c5/0aabdc9314b4b6f051168ac45227e2aa8e1c6d82718a547455e40c9c9faa/ruff-0.8.3-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:e4d66a21de39f15c9757d00c50c8cdd20ac84f55684ca56def7891a025d7e939", size = 10346327 },
|
233
|
+
{ url = "https://files.pythonhosted.org/packages/1a/78/4843a59e7e7b398d6019cf91ab06502fd95397b99b2b858798fbab9151f5/ruff-0.8.3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:c356e770811858bd20832af696ff6c7e884701115094f427b64b25093d6d932d", size = 9942585 },
|
234
|
+
{ url = "https://files.pythonhosted.org/packages/91/5a/642ed8f1ba23ffc2dd347697e01eef3c42fad6ac76603be4a8c3a9d6311e/ruff-0.8.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c0a60a825e3e177116c84009d5ebaa90cf40dfab56e1358d1df4e29a9a14b13", size = 10797597 },
|
235
|
+
{ url = "https://files.pythonhosted.org/packages/30/25/2e654bc7226da09a49730a1a2ea6e89f843b362db80b4b2a7a4f948ac986/ruff-0.8.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:75fb782f4db39501210ac093c79c3de581d306624575eddd7e4e13747e61ba18", size = 10307244 },
|
236
|
+
{ url = "https://files.pythonhosted.org/packages/c0/2d/a224d56bcd4383583db53c2b8f410ebf1200866984aa6eb9b5a70f04e71f/ruff-0.8.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f26bc76a133ecb09a38b7868737eded6941b70a6d34ef53a4027e83913b6502", size = 11362439 },
|
237
|
+
{ url = "https://files.pythonhosted.org/packages/82/01/03e2857f9c371b8767d3e909f06a33bbdac880df17f17f93d6f6951c3381/ruff-0.8.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:01b14b2f72a37390c1b13477c1c02d53184f728be2f3ffc3ace5b44e9e87b90d", size = 12078538 },
|
238
|
+
{ url = "https://files.pythonhosted.org/packages/af/ae/ff7f97b355da16d748ceec50e1604a8215d3659b36b38025a922e0612e9b/ruff-0.8.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53babd6e63e31f4e96ec95ea0d962298f9f0d9cc5990a1bbb023a6baf2503a82", size = 11616172 },
|
239
|
+
{ url = "https://files.pythonhosted.org/packages/6a/d0/6156d4d1e53ebd17747049afe801c5d7e3014d9b2f398b9236fe36ba4320/ruff-0.8.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1ae441ce4cf925b7f363d33cd6570c51435972d697e3e58928973994e56e1452", size = 12919886 },
|
240
|
+
{ url = "https://files.pythonhosted.org/packages/4e/84/affcb30bacb94f6036a128ad5de0e29f543d3f67ee42b490b17d68e44b8a/ruff-0.8.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7c65bc0cadce32255e93c57d57ecc2cca23149edd52714c0c5d6fa11ec328cd", size = 11212599 },
|
241
|
+
{ url = "https://files.pythonhosted.org/packages/60/b9/5694716bdefd8f73df7c0104334156c38fb0f77673d2966a5a1345bab94d/ruff-0.8.3-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:5be450bb18f23f0edc5a4e5585c17a56ba88920d598f04a06bd9fd76d324cb20", size = 10784637 },
|
242
|
+
{ url = "https://files.pythonhosted.org/packages/24/7e/0e8f835103ac7da81c3663eedf79dec8359e9ae9a3b0d704bae50be59176/ruff-0.8.3-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:8faeae3827eaa77f5721f09b9472a18c749139c891dbc17f45e72d8f2ca1f8fc", size = 10390591 },
|
243
|
+
{ url = "https://files.pythonhosted.org/packages/27/da/180ec771fc01c004045962ce017ca419a0281f4bfaf867ed0020f555b56e/ruff-0.8.3-py3-none-musllinux_1_2_i686.whl", hash = "sha256:db503486e1cf074b9808403991663e4277f5c664d3fe237ee0d994d1305bb060", size = 10894298 },
|
244
|
+
{ url = "https://files.pythonhosted.org/packages/6d/f8/29f241742ed3954eb2222314b02db29f531a15cab3238d1295e8657c5f18/ruff-0.8.3-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:6567be9fb62fbd7a099209257fef4ad2c3153b60579818b31a23c886ed4147ea", size = 11275965 },
|
245
|
+
{ url = "https://files.pythonhosted.org/packages/79/e9/5b81dc9afc8a80884405b230b9429efeef76d04caead904bd213f453b973/ruff-0.8.3-py3-none-win32.whl", hash = "sha256:19048f2f878f3ee4583fc6cb23fb636e48c2635e30fb2022b3a1cd293402f964", size = 8807651 },
|
246
|
+
{ url = "https://files.pythonhosted.org/packages/ea/67/7291461066007617b59a707887b90e319b6a043c79b4d19979f86b7a20e7/ruff-0.8.3-py3-none-win_amd64.whl", hash = "sha256:f7df94f57d7418fa7c3ffb650757e0c2b96cf2501a0b192c18e4fb5571dfada9", size = 9625289 },
|
247
|
+
{ url = "https://files.pythonhosted.org/packages/03/8f/e4fa95288b81233356d9a9dcaed057e5b0adc6399aa8fd0f6d784041c9c3/ruff-0.8.3-py3-none-win_arm64.whl", hash = "sha256:fe2756edf68ea79707c8d68b78ca9a58ed9af22e430430491ee03e718b5e4936", size = 9078754 },
|
248
248
|
]
|
249
249
|
|
250
250
|
[[package]]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|