effectual 0.7.4__py3-none-any.whl → 0.7.5__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- effectual/developer.py +1 -1
- {effectual-0.7.4.dist-info → effectual-0.7.5.dist-info}/METADATA +10 -2
- {effectual-0.7.4.dist-info → effectual-0.7.5.dist-info}/RECORD +6 -6
- {effectual-0.7.4.dist-info → effectual-0.7.5.dist-info}/WHEEL +0 -0
- {effectual-0.7.4.dist-info → effectual-0.7.5.dist-info}/entry_points.txt +0 -0
- {effectual-0.7.4.dist-info → effectual-0.7.5.dist-info}/licenses/LICENSE +0 -0
effectual/developer.py
CHANGED
@@ -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()
|
@@ -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
|
@@ -2,10 +2,10 @@ effectual/__init__.py,sha256=Hg_RSVgpLZvaeBUqt5uL_r5YIDsVdKPcFE2L5WJVYbM,482
|
|
2
2
|
effectual/build.py,sha256=0X3sKF9irQ2uDx8XiT3QBeqNozatFGq--siF4mdQE-U,6231
|
3
3
|
effectual/colors.py,sha256=na7SEUSXM7aHvEKeIAn5shrZJtrBYq_ZUp121GRO_PQ,1411
|
4
4
|
effectual/config.py,sha256=Z99V7AnJpSWuo-aEz10TDj5BAaT7tboGJUjggj-HQh4,1798
|
5
|
-
effectual/developer.py,sha256=
|
5
|
+
effectual/developer.py,sha256=mZ77VvPyGxcUZINAtw5qFxuejYB0-ExNHieAFvob8ps,1765
|
6
6
|
effectual/transformations.py,sha256=7GHgQWzin2J1W62yMReHXaYIChXc3f0rNJA-yY4LDEI,1313
|
7
|
-
effectual-0.7.
|
8
|
-
effectual-0.7.
|
9
|
-
effectual-0.7.
|
10
|
-
effectual-0.7.
|
11
|
-
effectual-0.7.
|
7
|
+
effectual-0.7.5.dist-info/METADATA,sha256=ailJ5HunlEitsvDKrCkiaHrr_oRCnaCMsfDNYl-8Cfs,2918
|
8
|
+
effectual-0.7.5.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
9
|
+
effectual-0.7.5.dist-info/entry_points.txt,sha256=1W7EjlLZkw_Wz8V1SgdzzDis-CRE5IINyg74upsB0zU,40
|
10
|
+
effectual-0.7.5.dist-info/licenses/LICENSE,sha256=RrVXS_K_FctToNx9BLuZm9vbcpTi3PHNzWMaz7QyVeg,1082
|
11
|
+
effectual-0.7.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|