effectual 0.8.4__tar.gz → 0.8.6__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.8.4 → effectual-0.8.6}/PKG-INFO +5 -5
- {effectual-0.8.4 → effectual-0.8.6}/README.md +4 -4
- {effectual-0.8.4 → effectual-0.8.6}/pyproject.toml +1 -1
- effectual-0.8.6/uv.lock +1120 -0
- effectual-0.8.4/uv.lock +0 -1030
- {effectual-0.8.4 → effectual-0.8.6}/.gitignore +0 -0
- {effectual-0.8.4 → effectual-0.8.6}/.python-version +0 -0
- {effectual-0.8.4 → effectual-0.8.6}/LICENSE +0 -0
- {effectual-0.8.4 → effectual-0.8.6}/src/effectual/__init__.py +0 -0
- {effectual-0.8.4 → effectual-0.8.6}/src/effectual/build.py +0 -0
- {effectual-0.8.4 → effectual-0.8.6}/src/effectual/colors.py +0 -0
- {effectual-0.8.4 → effectual-0.8.6}/src/effectual/config.py +0 -0
- {effectual-0.8.4 → effectual-0.8.6}/src/effectual/developer.py +0 -0
- {effectual-0.8.4 → effectual-0.8.6}/src/effectual/lib.py +0 -0
- {effectual-0.8.4 → effectual-0.8.6}/src/effectual/transformations.py +0 -0
- {effectual-0.8.4 → effectual-0.8.6}/taskfile.yml +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: effectual
|
3
|
-
Version: 0.8.
|
3
|
+
Version: 0.8.6
|
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>
|
@@ -48,7 +48,7 @@ Then to install effectual run:
|
|
48
48
|
|
49
49
|
uv add effectual --dev
|
50
50
|
|
51
|
-
Finally add the following lines to your pyproject.toml and configure to your
|
51
|
+
Finally add the following lines to your pyproject.toml and configure to your heart's desire
|
52
52
|
|
53
53
|
```TOML
|
54
54
|
[tool.effectual]
|
@@ -89,12 +89,12 @@ This is like what what [Rollup](https://rollupjs.org/) does for vite
|
|
89
89
|
- [Treeshaking](https://webpack.js.org/guides/tree-shaking/)
|
90
90
|
- Rewriting some time critical parts in Rust 🚀🦀
|
91
91
|
- Cross platform compatibility (multiple output bundles)
|
92
|
-
-
|
92
|
+
- Bundling python version shebang and bytecode compilation
|
93
93
|
- Plugin and loader system (like rollup and webpack)
|
94
94
|
|
95
95
|
# Contributions
|
96
96
|
|
97
|
-
All contributions are welcome, I'm not the best in the world at project management but if you think you can add or improve anything please send over a pull request
|
97
|
+
All contributions are welcome, I'm not the best in the world at project management but if you think you can add a feature or improve anything please send over a pull request!
|
98
98
|
|
99
99
|
## Building the project from source
|
100
100
|
|
@@ -112,6 +112,6 @@ To build the project from source you need two tools:
|
|
112
112
|
task setup
|
113
113
|
|
114
114
|
|
115
|
-
2) Then to build
|
115
|
+
2) Then to build a distributable tar.gz and wheel:
|
116
116
|
|
117
117
|
task build
|
@@ -25,7 +25,7 @@ Then to install effectual run:
|
|
25
25
|
|
26
26
|
uv add effectual --dev
|
27
27
|
|
28
|
-
Finally add the following lines to your pyproject.toml and configure to your
|
28
|
+
Finally add the following lines to your pyproject.toml and configure to your heart's desire
|
29
29
|
|
30
30
|
```TOML
|
31
31
|
[tool.effectual]
|
@@ -66,12 +66,12 @@ This is like what what [Rollup](https://rollupjs.org/) does for vite
|
|
66
66
|
- [Treeshaking](https://webpack.js.org/guides/tree-shaking/)
|
67
67
|
- Rewriting some time critical parts in Rust 🚀🦀
|
68
68
|
- Cross platform compatibility (multiple output bundles)
|
69
|
-
-
|
69
|
+
- Bundling python version shebang and bytecode compilation
|
70
70
|
- Plugin and loader system (like rollup and webpack)
|
71
71
|
|
72
72
|
# Contributions
|
73
73
|
|
74
|
-
All contributions are welcome, I'm not the best in the world at project management but if you think you can add or improve anything please send over a pull request
|
74
|
+
All contributions are welcome, I'm not the best in the world at project management but if you think you can add a feature or improve anything please send over a pull request!
|
75
75
|
|
76
76
|
## Building the project from source
|
77
77
|
|
@@ -89,6 +89,6 @@ To build the project from source you need two tools:
|
|
89
89
|
task setup
|
90
90
|
|
91
91
|
|
92
|
-
2) Then to build
|
92
|
+
2) Then to build a distributable tar.gz and wheel:
|
93
93
|
|
94
94
|
task build
|