wexample-wex-addon-dev-flutter 0.0.57__tar.gz → 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.
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/PKG-INFO +48 -123
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/README.md +45 -119
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/pyproject.toml +3 -4
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/workdir/flutter_package_workdir.py +4 -1
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/workdir/flutter_workdir.py +13 -9
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/__pycache__/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/config_value/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/config_value/flutter_package_readme_config_value.py +0 -0
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/file/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/file/flutter_pubspec_yaml_file.py +19 -19
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/flutter_addon_manager.py +0 -0
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/py.typed +0 -0
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/workdir/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/src/wexample_wex_addon_dev_flutter/workdir/flutter_packages_suite_workdir.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wexample-wex-addon-dev-flutter
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.1.0
|
|
4
4
|
Summary: Python dev addon for wex
|
|
5
5
|
Author-Email: weeger <contact@wexample.com>
|
|
6
6
|
License: MIT
|
|
@@ -11,58 +11,32 @@ Project-URL: homepage, https://github.com/wexample/python-wex-dev-python
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Requires-Dist: attrs>=23.1.0
|
|
13
13
|
Requires-Dist: cattrs>=23.1.0
|
|
14
|
-
Requires-Dist: wexample-filestate-flutter
|
|
15
|
-
Requires-Dist: wexample-wex-addon-app
|
|
16
|
-
Requires-Dist: wexample-wex-core==6.0.67
|
|
14
|
+
Requires-Dist: wexample-filestate-flutter>=0.1.0
|
|
15
|
+
Requires-Dist: wexample-wex-addon-app>=1.0.0
|
|
17
16
|
Provides-Extra: dev
|
|
18
17
|
Requires-Dist: pytest; extra == "dev"
|
|
19
18
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
20
19
|
Description-Content-Type: text/markdown
|
|
21
20
|
|
|
22
|
-
#
|
|
21
|
+
# wex_addon_dev_flutter
|
|
23
22
|
|
|
24
|
-
Version: 0.0
|
|
23
|
+
Version: 0.1.0
|
|
25
24
|
|
|
26
25
|
Python dev addon for wex
|
|
27
26
|
|
|
28
27
|
## Table of Contents
|
|
29
28
|
|
|
30
|
-
- [Status Compatibility](#status-compatibility)
|
|
31
|
-
- [Api Reference](#api-reference)
|
|
32
29
|
- [Tests](#tests)
|
|
33
|
-
- [
|
|
30
|
+
- [Suite Integration](#suite-integration)
|
|
31
|
+
- [Dependencies](#dependencies)
|
|
34
32
|
- [Versioning](#versioning)
|
|
35
|
-
- [Changelog](#changelog)
|
|
36
|
-
- [Migration Notes](#migration-notes)
|
|
37
|
-
- [Roadmap](#roadmap)
|
|
38
|
-
- [Security](#security)
|
|
39
|
-
- [Privacy](#privacy)
|
|
40
|
-
- [Support](#support)
|
|
41
|
-
- [Contribution Guidelines](#contribution-guidelines)
|
|
42
|
-
- [Maintainers](#maintainers)
|
|
43
33
|
- [License](#license)
|
|
44
|
-
- [Useful Links](#useful-links)
|
|
45
34
|
- [Suite Integration](#suite-integration)
|
|
46
|
-
- [Compatibility Matrix](#compatibility-matrix)
|
|
47
|
-
- [Dependencies](#dependencies)
|
|
48
35
|
- [Suite Signature](#suite-signature)
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
**Maturity**: Production-ready
|
|
54
|
-
|
|
55
|
-
**Python Support**: >=3.10
|
|
56
|
-
|
|
57
|
-
**OS Support**: Linux, macOS, Windows
|
|
58
|
-
|
|
59
|
-
**Status**: Actively maintained
|
|
60
|
-
|
|
61
|
-
## API Reference
|
|
62
|
-
|
|
63
|
-
Full API documentation is available in the source code docstrings.
|
|
64
|
-
|
|
65
|
-
Key modules and classes are documented with type hints for better IDE support.
|
|
36
|
+
- [Roadmap](#roadmap)
|
|
37
|
+
- [Status Compatibility](#status-compatibility)
|
|
38
|
+
- [Useful Links](#useful-links)
|
|
39
|
+
- [Migration Notes](#migration-notes)
|
|
66
40
|
|
|
67
41
|
## Tests
|
|
68
42
|
|
|
@@ -113,16 +87,22 @@ To enforce a minimum coverage percentage:
|
|
|
113
87
|
|
|
114
88
|
This will cause the test suite to fail if coverage drops below 80%.
|
|
115
89
|
|
|
116
|
-
##
|
|
90
|
+
## Integration in the Suite
|
|
91
|
+
|
|
92
|
+
This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
|
|
117
93
|
|
|
118
|
-
|
|
94
|
+
### Related Packages
|
|
119
95
|
|
|
120
|
-
|
|
121
|
-
- **Code formatting**: Enforced with black and isort
|
|
122
|
-
- **Linting**: Comprehensive checks with custom scripts and tools
|
|
123
|
-
- **Testing**: High test coverage requirements
|
|
96
|
+
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
124
97
|
|
|
125
|
-
|
|
98
|
+
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
99
|
+
|
|
100
|
+
## Dependencies
|
|
101
|
+
|
|
102
|
+
- attrs: >=23.1.0
|
|
103
|
+
- cattrs: >=23.1.0
|
|
104
|
+
- wexample-filestate-flutter: >=0.1.0
|
|
105
|
+
- wexample-wex-addon-app: >=1.0.0
|
|
126
106
|
|
|
127
107
|
## Versioning & Compatibility Policy
|
|
128
108
|
|
|
@@ -134,72 +114,45 @@ Wexample packages follow **Semantic Versioning** (SemVer):
|
|
|
134
114
|
|
|
135
115
|
We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
|
|
136
116
|
|
|
137
|
-
##
|
|
138
|
-
|
|
139
|
-
See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
|
|
140
|
-
|
|
141
|
-
Major changes are documented with migration guides when applicable.
|
|
142
|
-
|
|
143
|
-
## Migration Notes
|
|
144
|
-
|
|
145
|
-
When upgrading between major versions, refer to the migration guides in the documentation.
|
|
146
|
-
|
|
147
|
-
Breaking changes are clearly documented with upgrade paths and examples.
|
|
148
|
-
|
|
149
|
-
## Known Limitations & Roadmap
|
|
150
|
-
|
|
151
|
-
Current limitations and planned features are tracked in the GitHub issues.
|
|
152
|
-
|
|
153
|
-
See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_flutter/issues) for upcoming features and improvements.
|
|
154
|
-
|
|
155
|
-
## Security Policy
|
|
156
|
-
|
|
157
|
-
### Reporting Vulnerabilities
|
|
117
|
+
## License
|
|
158
118
|
|
|
159
|
-
|
|
119
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
160
120
|
|
|
161
|
-
|
|
121
|
+
Free to use in both personal and commercial projects.
|
|
162
122
|
|
|
163
|
-
|
|
123
|
+
## Integration in the Suite
|
|
164
124
|
|
|
165
|
-
|
|
125
|
+
This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
|
|
166
126
|
|
|
167
|
-
|
|
127
|
+
### Related Packages
|
|
168
128
|
|
|
169
|
-
|
|
129
|
+
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
170
130
|
|
|
171
|
-
|
|
131
|
+
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
172
132
|
|
|
173
|
-
|
|
174
|
-
- **GitHub Discussions**: Questions and community support
|
|
175
|
-
- **Documentation**: Comprehensive guides and API reference
|
|
176
|
-
- **Email**: contact@wexample.com for general inquiries
|
|
133
|
+
# About us
|
|
177
134
|
|
|
178
|
-
|
|
135
|
+
[Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
|
|
179
136
|
|
|
180
|
-
|
|
137
|
+
This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
|
|
181
138
|
|
|
182
|
-
|
|
139
|
+
Wexample cultivates a culture of mastery. Each package, each contribution carries the mark of a community that values precision, ethics, and innovation — a community proud to shape the future of digital craftsmanship.
|
|
183
140
|
|
|
184
|
-
|
|
141
|
+
## Known Limitations & Roadmap
|
|
185
142
|
|
|
186
|
-
|
|
187
|
-
2. **Create** a feature branch
|
|
188
|
-
3. **Make** your changes
|
|
189
|
-
4. **Test** thoroughly
|
|
190
|
-
5. **Submit** a pull request
|
|
143
|
+
Current limitations and planned features are tracked in the GitHub issues.
|
|
191
144
|
|
|
192
|
-
|
|
145
|
+
See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_flutter/issues) for upcoming features and improvements.
|
|
193
146
|
|
|
194
|
-
|
|
147
|
+
## Status & Compatibility
|
|
195
148
|
|
|
196
|
-
|
|
149
|
+
**Maturity**: Production-ready
|
|
197
150
|
|
|
198
|
-
|
|
151
|
+
**Python Support**: >=3.10
|
|
199
152
|
|
|
200
|
-
|
|
153
|
+
**OS Support**: Linux, macOS, Windows
|
|
201
154
|
|
|
202
|
-
|
|
155
|
+
**Status**: Actively maintained
|
|
203
156
|
|
|
204
157
|
## Useful Links
|
|
205
158
|
|
|
@@ -207,38 +160,10 @@ Free to use in both personal and commercial projects.
|
|
|
207
160
|
- **Documentation**: [docs.wexample.com](https://docs.wexample.com)
|
|
208
161
|
- **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-flutter/issues
|
|
209
162
|
- **Discussions**: https://github.com/wexample/python-wex-addon-dev-flutter/discussions
|
|
210
|
-
- **PyPI**: [pypi.org/project/
|
|
163
|
+
- **PyPI**: [pypi.org/project/wex_addon_dev_flutter](https://pypi.org/project/wex_addon_dev_flutter/)
|
|
211
164
|
|
|
212
|
-
##
|
|
213
|
-
|
|
214
|
-
This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
|
|
215
|
-
|
|
216
|
-
### Related Packages
|
|
217
|
-
|
|
218
|
-
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
219
|
-
|
|
220
|
-
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
221
|
-
|
|
222
|
-
## Compatibility Matrix
|
|
223
|
-
|
|
224
|
-
This package is part of the Wexample suite and is compatible with other suite packages.
|
|
225
|
-
|
|
226
|
-
Refer to each package's documentation for specific version compatibility requirements.
|
|
227
|
-
|
|
228
|
-
## Dependencies
|
|
229
|
-
|
|
230
|
-
- attrs: >=23.1.0
|
|
231
|
-
- cattrs: >=23.1.0
|
|
232
|
-
- wexample-filestate-flutter: ==0.0.15
|
|
233
|
-
- wexample-wex-addon-app: ==0.0.55
|
|
234
|
-
- wexample-wex-core: ==6.0.67
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
# About us
|
|
238
|
-
|
|
239
|
-
[Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
|
|
240
|
-
|
|
241
|
-
This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
|
|
165
|
+
## Migration Notes
|
|
242
166
|
|
|
243
|
-
|
|
167
|
+
When upgrading between major versions, refer to the migration guides in the documentation.
|
|
244
168
|
|
|
169
|
+
Breaking changes are clearly documented with upgrade paths and examples.
|
|
@@ -1,47 +1,22 @@
|
|
|
1
|
-
#
|
|
1
|
+
# wex_addon_dev_flutter
|
|
2
2
|
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.1.0
|
|
4
4
|
|
|
5
5
|
Python dev addon for wex
|
|
6
6
|
|
|
7
7
|
## Table of Contents
|
|
8
8
|
|
|
9
|
-
- [Status Compatibility](#status-compatibility)
|
|
10
|
-
- [Api Reference](#api-reference)
|
|
11
9
|
- [Tests](#tests)
|
|
12
|
-
- [
|
|
10
|
+
- [Suite Integration](#suite-integration)
|
|
11
|
+
- [Dependencies](#dependencies)
|
|
13
12
|
- [Versioning](#versioning)
|
|
14
|
-
- [Changelog](#changelog)
|
|
15
|
-
- [Migration Notes](#migration-notes)
|
|
16
|
-
- [Roadmap](#roadmap)
|
|
17
|
-
- [Security](#security)
|
|
18
|
-
- [Privacy](#privacy)
|
|
19
|
-
- [Support](#support)
|
|
20
|
-
- [Contribution Guidelines](#contribution-guidelines)
|
|
21
|
-
- [Maintainers](#maintainers)
|
|
22
13
|
- [License](#license)
|
|
23
|
-
- [Useful Links](#useful-links)
|
|
24
14
|
- [Suite Integration](#suite-integration)
|
|
25
|
-
- [Compatibility Matrix](#compatibility-matrix)
|
|
26
|
-
- [Dependencies](#dependencies)
|
|
27
15
|
- [Suite Signature](#suite-signature)
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
**Maturity**: Production-ready
|
|
33
|
-
|
|
34
|
-
**Python Support**: >=3.10
|
|
35
|
-
|
|
36
|
-
**OS Support**: Linux, macOS, Windows
|
|
37
|
-
|
|
38
|
-
**Status**: Actively maintained
|
|
39
|
-
|
|
40
|
-
## API Reference
|
|
41
|
-
|
|
42
|
-
Full API documentation is available in the source code docstrings.
|
|
43
|
-
|
|
44
|
-
Key modules and classes are documented with type hints for better IDE support.
|
|
16
|
+
- [Roadmap](#roadmap)
|
|
17
|
+
- [Status Compatibility](#status-compatibility)
|
|
18
|
+
- [Useful Links](#useful-links)
|
|
19
|
+
- [Migration Notes](#migration-notes)
|
|
45
20
|
|
|
46
21
|
## Tests
|
|
47
22
|
|
|
@@ -92,16 +67,22 @@ To enforce a minimum coverage percentage:
|
|
|
92
67
|
|
|
93
68
|
This will cause the test suite to fail if coverage drops below 80%.
|
|
94
69
|
|
|
95
|
-
##
|
|
70
|
+
## Integration in the Suite
|
|
71
|
+
|
|
72
|
+
This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
|
|
96
73
|
|
|
97
|
-
|
|
74
|
+
### Related Packages
|
|
98
75
|
|
|
99
|
-
|
|
100
|
-
- **Code formatting**: Enforced with black and isort
|
|
101
|
-
- **Linting**: Comprehensive checks with custom scripts and tools
|
|
102
|
-
- **Testing**: High test coverage requirements
|
|
76
|
+
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
103
77
|
|
|
104
|
-
|
|
78
|
+
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
79
|
+
|
|
80
|
+
## Dependencies
|
|
81
|
+
|
|
82
|
+
- attrs: >=23.1.0
|
|
83
|
+
- cattrs: >=23.1.0
|
|
84
|
+
- wexample-filestate-flutter: >=0.1.0
|
|
85
|
+
- wexample-wex-addon-app: >=1.0.0
|
|
105
86
|
|
|
106
87
|
## Versioning & Compatibility Policy
|
|
107
88
|
|
|
@@ -113,72 +94,45 @@ Wexample packages follow **Semantic Versioning** (SemVer):
|
|
|
113
94
|
|
|
114
95
|
We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
|
|
115
96
|
|
|
116
|
-
##
|
|
117
|
-
|
|
118
|
-
See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
|
|
119
|
-
|
|
120
|
-
Major changes are documented with migration guides when applicable.
|
|
121
|
-
|
|
122
|
-
## Migration Notes
|
|
123
|
-
|
|
124
|
-
When upgrading between major versions, refer to the migration guides in the documentation.
|
|
125
|
-
|
|
126
|
-
Breaking changes are clearly documented with upgrade paths and examples.
|
|
127
|
-
|
|
128
|
-
## Known Limitations & Roadmap
|
|
129
|
-
|
|
130
|
-
Current limitations and planned features are tracked in the GitHub issues.
|
|
131
|
-
|
|
132
|
-
See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_flutter/issues) for upcoming features and improvements.
|
|
133
|
-
|
|
134
|
-
## Security Policy
|
|
135
|
-
|
|
136
|
-
### Reporting Vulnerabilities
|
|
97
|
+
## License
|
|
137
98
|
|
|
138
|
-
|
|
99
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
139
100
|
|
|
140
|
-
|
|
101
|
+
Free to use in both personal and commercial projects.
|
|
141
102
|
|
|
142
|
-
|
|
103
|
+
## Integration in the Suite
|
|
143
104
|
|
|
144
|
-
|
|
105
|
+
This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
|
|
145
106
|
|
|
146
|
-
|
|
107
|
+
### Related Packages
|
|
147
108
|
|
|
148
|
-
|
|
109
|
+
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
149
110
|
|
|
150
|
-
|
|
111
|
+
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
151
112
|
|
|
152
|
-
|
|
153
|
-
- **GitHub Discussions**: Questions and community support
|
|
154
|
-
- **Documentation**: Comprehensive guides and API reference
|
|
155
|
-
- **Email**: contact@wexample.com for general inquiries
|
|
113
|
+
# About us
|
|
156
114
|
|
|
157
|
-
|
|
115
|
+
[Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
|
|
158
116
|
|
|
159
|
-
|
|
117
|
+
This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
|
|
160
118
|
|
|
161
|
-
|
|
119
|
+
Wexample cultivates a culture of mastery. Each package, each contribution carries the mark of a community that values precision, ethics, and innovation — a community proud to shape the future of digital craftsmanship.
|
|
162
120
|
|
|
163
|
-
|
|
121
|
+
## Known Limitations & Roadmap
|
|
164
122
|
|
|
165
|
-
|
|
166
|
-
2. **Create** a feature branch
|
|
167
|
-
3. **Make** your changes
|
|
168
|
-
4. **Test** thoroughly
|
|
169
|
-
5. **Submit** a pull request
|
|
123
|
+
Current limitations and planned features are tracked in the GitHub issues.
|
|
170
124
|
|
|
171
|
-
|
|
125
|
+
See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_flutter/issues) for upcoming features and improvements.
|
|
172
126
|
|
|
173
|
-
|
|
127
|
+
## Status & Compatibility
|
|
174
128
|
|
|
175
|
-
|
|
129
|
+
**Maturity**: Production-ready
|
|
176
130
|
|
|
177
|
-
|
|
131
|
+
**Python Support**: >=3.10
|
|
178
132
|
|
|
179
|
-
|
|
133
|
+
**OS Support**: Linux, macOS, Windows
|
|
180
134
|
|
|
181
|
-
|
|
135
|
+
**Status**: Actively maintained
|
|
182
136
|
|
|
183
137
|
## Useful Links
|
|
184
138
|
|
|
@@ -186,38 +140,10 @@ Free to use in both personal and commercial projects.
|
|
|
186
140
|
- **Documentation**: [docs.wexample.com](https://docs.wexample.com)
|
|
187
141
|
- **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-flutter/issues
|
|
188
142
|
- **Discussions**: https://github.com/wexample/python-wex-addon-dev-flutter/discussions
|
|
189
|
-
- **PyPI**: [pypi.org/project/
|
|
143
|
+
- **PyPI**: [pypi.org/project/wex_addon_dev_flutter](https://pypi.org/project/wex_addon_dev_flutter/)
|
|
190
144
|
|
|
191
|
-
##
|
|
192
|
-
|
|
193
|
-
This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
|
|
194
|
-
|
|
195
|
-
### Related Packages
|
|
196
|
-
|
|
197
|
-
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
198
|
-
|
|
199
|
-
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
200
|
-
|
|
201
|
-
## Compatibility Matrix
|
|
202
|
-
|
|
203
|
-
This package is part of the Wexample suite and is compatible with other suite packages.
|
|
204
|
-
|
|
205
|
-
Refer to each package's documentation for specific version compatibility requirements.
|
|
206
|
-
|
|
207
|
-
## Dependencies
|
|
208
|
-
|
|
209
|
-
- attrs: >=23.1.0
|
|
210
|
-
- cattrs: >=23.1.0
|
|
211
|
-
- wexample-filestate-flutter: ==0.0.15
|
|
212
|
-
- wexample-wex-addon-app: ==0.0.55
|
|
213
|
-
- wexample-wex-core: ==6.0.67
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
# About us
|
|
217
|
-
|
|
218
|
-
[Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
|
|
219
|
-
|
|
220
|
-
This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
|
|
145
|
+
## Migration Notes
|
|
221
146
|
|
|
222
|
-
|
|
147
|
+
When upgrading between major versions, refer to the migration guides in the documentation.
|
|
223
148
|
|
|
149
|
+
Breaking changes are clearly documented with upgrade paths and examples.
|
{wexample_wex_addon_dev_flutter-0.0.57 → wexample_wex_addon_dev_flutter-0.1.0}/pyproject.toml
RENAMED
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "wexample-wex-addon-dev-flutter"
|
|
9
|
-
version = "0.0
|
|
9
|
+
version = "0.1.0"
|
|
10
10
|
description = "Python dev addon for wex"
|
|
11
11
|
authors = [
|
|
12
12
|
{ name = "weeger", email = "contact@wexample.com" },
|
|
@@ -20,9 +20,8 @@ classifiers = [
|
|
|
20
20
|
dependencies = [
|
|
21
21
|
"attrs>=23.1.0",
|
|
22
22
|
"cattrs>=23.1.0",
|
|
23
|
-
"wexample-filestate-flutter
|
|
24
|
-
"wexample-wex-addon-app
|
|
25
|
-
"wexample-wex-core==6.0.67",
|
|
23
|
+
"wexample-filestate-flutter>=0.1.0",
|
|
24
|
+
"wexample-wex-addon-app>=1.0.0",
|
|
26
25
|
]
|
|
27
26
|
|
|
28
27
|
[project.readme]
|
|
@@ -14,6 +14,9 @@ if TYPE_CHECKING:
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class FlutterPackageWorkdir(FlutterWorkdir):
|
|
17
|
+
def _get_critical_directories(self) -> list[str]:
|
|
18
|
+
return ["lib"]
|
|
19
|
+
|
|
17
20
|
def _get_readme_content(self) -> ReadmeContentConfigValue | None:
|
|
18
21
|
from wexample_wex_addon_dev_flutter.config_value.flutter_package_readme_config_value import (
|
|
19
22
|
FlutterPackageReadmeContentConfigValue,
|
|
@@ -21,7 +24,7 @@ class FlutterPackageWorkdir(FlutterWorkdir):
|
|
|
21
24
|
|
|
22
25
|
return FlutterPackageReadmeContentConfigValue(workdir=self)
|
|
23
26
|
|
|
24
|
-
def
|
|
27
|
+
def _get_suite_workdir_class(self) -> type[FrameworkPackageSuiteWorkdir]:
|
|
25
28
|
from wexample_wex_addon_dev_flutter.workdir.flutter_packages_suite_workdir import (
|
|
26
29
|
FlutterPackagesSuiteWorkdir,
|
|
27
30
|
)
|
|
@@ -7,7 +7,9 @@ from wexample_config.options_provider.abstract_options_provider import (
|
|
|
7
7
|
)
|
|
8
8
|
from wexample_helpers.decorator.base_class import base_class
|
|
9
9
|
from wexample_wex_addon_app.workdir.code_base_workdir import CodeBaseWorkdir
|
|
10
|
-
from wexample_wex_addon_app.workdir.mixin.with_license_workdir_mixin import
|
|
10
|
+
from wexample_wex_addon_app.workdir.mixin.with_license_workdir_mixin import (
|
|
11
|
+
WithLicenseWorkdirMixin,
|
|
12
|
+
)
|
|
11
13
|
|
|
12
14
|
if TYPE_CHECKING:
|
|
13
15
|
from wexample_config.const.types import DictConfig
|
|
@@ -141,20 +143,22 @@ class FlutterWorkdir(WithLicenseWorkdirMixin, CodeBaseWorkdir):
|
|
|
141
143
|
recursive=True,
|
|
142
144
|
)
|
|
143
145
|
|
|
146
|
+
def _publish(self, force=False) -> None:
|
|
147
|
+
cwd = self.get_path()
|
|
148
|
+
|
|
149
|
+
self._safe_shell(["flutter", "pub", "publish", "--dry-run"], cwd)
|
|
150
|
+
|
|
151
|
+
publish_cmd = ["flutter", "pub", "publish"] + (["--force"] if force else [])
|
|
152
|
+
self._safe_shell(publish_cmd, cwd)
|
|
153
|
+
|
|
144
154
|
def _safe_shell(self, cmd, cwd) -> None:
|
|
145
155
|
import subprocess
|
|
156
|
+
|
|
146
157
|
from wexample_helpers.helpers.shell import shell_run
|
|
158
|
+
|
|
147
159
|
try:
|
|
148
160
|
shell_run(cmd, inherit_stdio=True, cwd=cwd)
|
|
149
161
|
except subprocess.CalledProcessError as e:
|
|
150
162
|
if e.returncode != 65:
|
|
151
163
|
raise
|
|
152
164
|
self.warning(f"Command {cmd} returned warnings (exit code 65).")
|
|
153
|
-
|
|
154
|
-
def _publish(self, force=False) -> None:
|
|
155
|
-
cwd = self.get_path()
|
|
156
|
-
|
|
157
|
-
self._safe_shell(["flutter", "pub", "publish", "--dry-run"], cwd)
|
|
158
|
-
|
|
159
|
-
publish_cmd = ["flutter", "pub", "publish"] + (["--force"] if force else [])
|
|
160
|
-
self._safe_shell(publish_cmd, cwd)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -7,25 +7,6 @@ from wexample_helpers.decorator.base_class import base_class
|
|
|
7
7
|
|
|
8
8
|
@base_class
|
|
9
9
|
class FlutterPubspecYamlFile(YamlFile):
|
|
10
|
-
def get_dependencies_versions(
|
|
11
|
-
self, optional: bool = False, group: str = "dev"
|
|
12
|
-
) -> dict[str, str]:
|
|
13
|
-
config = self.read_config()
|
|
14
|
-
|
|
15
|
-
dependencies = config.search(path="dependencies").get_dict_or_default(
|
|
16
|
-
default={}
|
|
17
|
-
)
|
|
18
|
-
dev_dependencies = config.search(path="dev_dependencies").get_dict_or_default(
|
|
19
|
-
default={}
|
|
20
|
-
)
|
|
21
|
-
|
|
22
|
-
merged = dict(dependencies)
|
|
23
|
-
|
|
24
|
-
if group == "dev":
|
|
25
|
-
merged.update(dev_dependencies)
|
|
26
|
-
|
|
27
|
-
return merged
|
|
28
|
-
|
|
29
10
|
def dumps(self, content: dict | None = None) -> str:
|
|
30
11
|
workdir = self.get_parent_item()
|
|
31
12
|
|
|
@@ -61,3 +42,22 @@ class FlutterPubspecYamlFile(YamlFile):
|
|
|
61
42
|
content.setdefault("issue_tracker", f"{resolved_repo_url}/issues")
|
|
62
43
|
|
|
63
44
|
return super().dumps(content)
|
|
45
|
+
|
|
46
|
+
def get_dependencies_versions(
|
|
47
|
+
self, optional: bool = False, group: str = "dev"
|
|
48
|
+
) -> dict[str, str]:
|
|
49
|
+
config = self.read_config()
|
|
50
|
+
|
|
51
|
+
dependencies = config.search(path="dependencies").get_dict_or_default(
|
|
52
|
+
default={}
|
|
53
|
+
)
|
|
54
|
+
dev_dependencies = config.search(path="dev_dependencies").get_dict_or_default(
|
|
55
|
+
default={}
|
|
56
|
+
)
|
|
57
|
+
|
|
58
|
+
merged = dict(dependencies)
|
|
59
|
+
|
|
60
|
+
if group == "dev":
|
|
61
|
+
merged.update(dev_dependencies)
|
|
62
|
+
|
|
63
|
+
return merged
|
|
File without changes
|
|
File without changes
|
|
File without changes
|