wexample-wex-addon-dev-javascript 0.0.45__tar.gz → 0.0.49__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.
Files changed (13) hide show
  1. wexample_wex_addon_dev_javascript-0.0.49/PKG-INFO +187 -0
  2. wexample_wex_addon_dev_javascript-0.0.49/README.md +167 -0
  3. {wexample_wex_addon_dev_javascript-0.0.45 → wexample_wex_addon_dev_javascript-0.0.49}/pyproject.toml +12 -2
  4. wexample_wex_addon_dev_javascript-0.0.49/src/wexample_wex_addon_dev_javascript/workdir/__init__.py +0 -0
  5. {wexample_wex_addon_dev_javascript-0.0.45 → wexample_wex_addon_dev_javascript-0.0.49}/src/wexample_wex_addon_dev_javascript/workdir/javascript_packages_suite_workdir.py +2 -2
  6. {wexample_wex_addon_dev_javascript-0.0.45 → wexample_wex_addon_dev_javascript-0.0.49}/src/wexample_wex_addon_dev_javascript/workdir/javascript_workdir.py +1 -1
  7. wexample_wex_addon_dev_javascript-0.0.45/PKG-INFO +0 -52
  8. wexample_wex_addon_dev_javascript-0.0.45/README.md +0 -34
  9. {wexample_wex_addon_dev_javascript-0.0.45 → wexample_wex_addon_dev_javascript-0.0.49}/src/wexample_wex_addon_dev_javascript/__init__.py +0 -0
  10. {wexample_wex_addon_dev_javascript-0.0.45/src/wexample_wex_addon_dev_javascript/workdir → wexample_wex_addon_dev_javascript-0.0.49/src/wexample_wex_addon_dev_javascript/__pycache__}/__init__.py +0 -0
  11. {wexample_wex_addon_dev_javascript-0.0.45 → wexample_wex_addon_dev_javascript-0.0.49}/src/wexample_wex_addon_dev_javascript/javascript_addon_manager.py +0 -0
  12. {wexample_wex_addon_dev_javascript-0.0.45 → wexample_wex_addon_dev_javascript-0.0.49}/src/wexample_wex_addon_dev_javascript/py.typed +0 -0
  13. {wexample_wex_addon_dev_javascript-0.0.45 → wexample_wex_addon_dev_javascript-0.0.49}/src/wexample_wex_addon_dev_javascript/workdir/javascript_package_workdir.py +0 -0
@@ -0,0 +1,187 @@
1
+ Metadata-Version: 2.1
2
+ Name: wexample-wex-addon-dev-javascript
3
+ Version: 0.0.49
4
+ Summary: Python dev addon for wex
5
+ Author-Email: weeger <contact@wexample.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Project-URL: homepage, https://github.com/wexample/python-wex-dev-python
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: attrs>=23.1.0
13
+ Requires-Dist: cattrs>=23.1.0
14
+ Requires-Dist: wexample-wex-addon-app==0.0.49
15
+ Requires-Dist: wexample-wex-core==6.0.55
16
+ Provides-Extra: dev
17
+ Requires-Dist: pytest; extra == "dev"
18
+ Requires-Dist: pytest-cov; extra == "dev"
19
+ Description-Content-Type: text/markdown
20
+
21
+ # wexample-wex-addon-dev-javascript
22
+
23
+ Version: 0.0.49
24
+
25
+ Python dev addon for wex
26
+
27
+ ## Tests
28
+
29
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
30
+
31
+ ### Installation
32
+
33
+ First, install the required testing dependencies:
34
+ ```bash
35
+ .venv/bin/python -m pip install pytest pytest-cov
36
+ ```
37
+
38
+ ### Basic Usage
39
+
40
+ Run all tests with coverage:
41
+ ```bash
42
+ .venv/bin/python -m pytest --cov
43
+ ```
44
+
45
+ ### Common Commands
46
+ ```bash
47
+ # Run tests with coverage for a specific module
48
+ .venv/bin/python -m pytest --cov=your_module
49
+
50
+ # Show which lines are not covered
51
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
52
+
53
+ # Generate an HTML coverage report
54
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
55
+
56
+ # Combine terminal and HTML reports
57
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
58
+
59
+ # Run specific test file with coverage
60
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
61
+ ```
62
+
63
+ ### Viewing HTML Reports
64
+
65
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
66
+
67
+ ### Coverage Threshold
68
+
69
+ To enforce a minimum coverage percentage:
70
+ ```bash
71
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
72
+ ```
73
+
74
+ This will cause the test suite to fail if coverage drops below 80%.
75
+
76
+ ## Code Quality & Typing
77
+
78
+ All the suite packages follow strict quality standards:
79
+
80
+ - **Type hints**: Full type coverage with mypy validation
81
+ - **Code formatting**: Enforced with black and isort
82
+ - **Linting**: Comprehensive checks with custom scripts and tools
83
+ - **Testing**: High test coverage requirements
84
+
85
+ These standards ensure reliability and maintainability across the suite.
86
+
87
+ ## Versioning & Compatibility Policy
88
+
89
+ Wexample packages follow **Semantic Versioning** (SemVer):
90
+
91
+ - **MAJOR**: Breaking changes
92
+ - **MINOR**: New features, backward compatible
93
+ - **PATCH**: Bug fixes, backward compatible
94
+
95
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
96
+
97
+ ## Changelog
98
+
99
+ See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
100
+
101
+ Major changes are documented with migration guides when applicable.
102
+
103
+ ## Migration Notes
104
+
105
+ When upgrading between major versions, refer to the migration guides in the documentation.
106
+
107
+ Breaking changes are clearly documented with upgrade paths and examples.
108
+
109
+ ## Known Limitations & Roadmap
110
+
111
+ Current limitations and planned features are tracked in the GitHub issues.
112
+
113
+ See the [project roadmap](https://github.com/wexample/python-wex-dev-python/issues) for upcoming features and improvements.
114
+
115
+ ## Security Policy
116
+
117
+ ### Reporting Vulnerabilities
118
+
119
+ If you discover a security vulnerability, please email security@wexample.com.
120
+
121
+ **Do not** open public issues for security vulnerabilities.
122
+
123
+ We take security seriously and will respond promptly to verified reports.
124
+
125
+ ## Privacy & Telemetry
126
+
127
+ This package does **not** collect any telemetry or usage data.
128
+
129
+ Your privacy is respected — no data is transmitted to external services.
130
+
131
+ ## Support Channels
132
+
133
+ - **GitHub Issues**: Bug reports and feature requests
134
+ - **GitHub Discussions**: Questions and community support
135
+ - **Documentation**: Comprehensive guides and API reference
136
+ - **Email**: contact@wexample.com for general inquiries
137
+
138
+ Community support is available through GitHub Discussions.
139
+
140
+ ## Contribution Guidelines
141
+
142
+ We welcome contributions to the Wexample suite!
143
+
144
+ ### How to Contribute
145
+
146
+ 1. **Fork** the repository
147
+ 2. **Create** a feature branch
148
+ 3. **Make** your changes
149
+ 4. **Test** thoroughly
150
+ 5. **Submit** a pull request
151
+
152
+ ## Maintainers & Authors
153
+
154
+ Maintained by the Wexample team and community contributors.
155
+
156
+ See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the full list of contributors.
157
+
158
+ ## License
159
+
160
+ MIT
161
+
162
+ ## Useful Links
163
+
164
+ - **Homepage**: https://github.com/wexample/python-wex-dev-python
165
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
166
+ - **Issue Tracker**: https://github.com/wexample/python-wex-dev-python/issues
167
+ - **Discussions**: https://github.com/wexample/python-wex-dev-python/discussions
168
+ - **PyPI**: [pypi.org/project/wexample-wex-addon-dev-javascript](https://pypi.org/project/wexample-wex-addon-dev-javascript/)
169
+
170
+ ## Integration in the Suite
171
+
172
+ This package is part of the **Wexample Suite** — a collection of high-quality Python packages designed to work seamlessly together.
173
+
174
+ ### Related Packages
175
+
176
+ 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.
177
+
178
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
179
+
180
+ # About us
181
+
182
+ Wexample 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.
183
+
184
+ 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.
185
+
186
+ 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.
187
+
@@ -0,0 +1,167 @@
1
+ # wexample-wex-addon-dev-javascript
2
+
3
+ Version: 0.0.49
4
+
5
+ Python dev addon for wex
6
+
7
+ ## Tests
8
+
9
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
10
+
11
+ ### Installation
12
+
13
+ First, install the required testing dependencies:
14
+ ```bash
15
+ .venv/bin/python -m pip install pytest pytest-cov
16
+ ```
17
+
18
+ ### Basic Usage
19
+
20
+ Run all tests with coverage:
21
+ ```bash
22
+ .venv/bin/python -m pytest --cov
23
+ ```
24
+
25
+ ### Common Commands
26
+ ```bash
27
+ # Run tests with coverage for a specific module
28
+ .venv/bin/python -m pytest --cov=your_module
29
+
30
+ # Show which lines are not covered
31
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
32
+
33
+ # Generate an HTML coverage report
34
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
35
+
36
+ # Combine terminal and HTML reports
37
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
38
+
39
+ # Run specific test file with coverage
40
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
41
+ ```
42
+
43
+ ### Viewing HTML Reports
44
+
45
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
46
+
47
+ ### Coverage Threshold
48
+
49
+ To enforce a minimum coverage percentage:
50
+ ```bash
51
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
52
+ ```
53
+
54
+ This will cause the test suite to fail if coverage drops below 80%.
55
+
56
+ ## Code Quality & Typing
57
+
58
+ All the suite packages follow strict quality standards:
59
+
60
+ - **Type hints**: Full type coverage with mypy validation
61
+ - **Code formatting**: Enforced with black and isort
62
+ - **Linting**: Comprehensive checks with custom scripts and tools
63
+ - **Testing**: High test coverage requirements
64
+
65
+ These standards ensure reliability and maintainability across the suite.
66
+
67
+ ## Versioning & Compatibility Policy
68
+
69
+ Wexample packages follow **Semantic Versioning** (SemVer):
70
+
71
+ - **MAJOR**: Breaking changes
72
+ - **MINOR**: New features, backward compatible
73
+ - **PATCH**: Bug fixes, backward compatible
74
+
75
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
76
+
77
+ ## Changelog
78
+
79
+ See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
80
+
81
+ Major changes are documented with migration guides when applicable.
82
+
83
+ ## Migration Notes
84
+
85
+ When upgrading between major versions, refer to the migration guides in the documentation.
86
+
87
+ Breaking changes are clearly documented with upgrade paths and examples.
88
+
89
+ ## Known Limitations & Roadmap
90
+
91
+ Current limitations and planned features are tracked in the GitHub issues.
92
+
93
+ See the [project roadmap](https://github.com/wexample/python-wex-dev-python/issues) for upcoming features and improvements.
94
+
95
+ ## Security Policy
96
+
97
+ ### Reporting Vulnerabilities
98
+
99
+ If you discover a security vulnerability, please email security@wexample.com.
100
+
101
+ **Do not** open public issues for security vulnerabilities.
102
+
103
+ We take security seriously and will respond promptly to verified reports.
104
+
105
+ ## Privacy & Telemetry
106
+
107
+ This package does **not** collect any telemetry or usage data.
108
+
109
+ Your privacy is respected — no data is transmitted to external services.
110
+
111
+ ## Support Channels
112
+
113
+ - **GitHub Issues**: Bug reports and feature requests
114
+ - **GitHub Discussions**: Questions and community support
115
+ - **Documentation**: Comprehensive guides and API reference
116
+ - **Email**: contact@wexample.com for general inquiries
117
+
118
+ Community support is available through GitHub Discussions.
119
+
120
+ ## Contribution Guidelines
121
+
122
+ We welcome contributions to the Wexample suite!
123
+
124
+ ### How to Contribute
125
+
126
+ 1. **Fork** the repository
127
+ 2. **Create** a feature branch
128
+ 3. **Make** your changes
129
+ 4. **Test** thoroughly
130
+ 5. **Submit** a pull request
131
+
132
+ ## Maintainers & Authors
133
+
134
+ Maintained by the Wexample team and community contributors.
135
+
136
+ See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the full list of contributors.
137
+
138
+ ## License
139
+
140
+ MIT
141
+
142
+ ## Useful Links
143
+
144
+ - **Homepage**: https://github.com/wexample/python-wex-dev-python
145
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
146
+ - **Issue Tracker**: https://github.com/wexample/python-wex-dev-python/issues
147
+ - **Discussions**: https://github.com/wexample/python-wex-dev-python/discussions
148
+ - **PyPI**: [pypi.org/project/wexample-wex-addon-dev-javascript](https://pypi.org/project/wexample-wex-addon-dev-javascript/)
149
+
150
+ ## Integration in the Suite
151
+
152
+ This package is part of the **Wexample Suite** — a collection of high-quality Python packages designed to work seamlessly together.
153
+
154
+ ### Related Packages
155
+
156
+ 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.
157
+
158
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
159
+
160
+ # About us
161
+
162
+ Wexample 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.
163
+
164
+ 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
+
166
+ 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.
167
+
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "wexample-wex-addon-dev-javascript"
9
- version = "0.0.45"
9
+ version = "0.0.49"
10
10
  description = "Python dev addon for wex"
11
11
  authors = [
12
12
  { name = "weeger", email = "contact@wexample.com" },
@@ -20,7 +20,8 @@ classifiers = [
20
20
  dependencies = [
21
21
  "attrs>=23.1.0",
22
22
  "cattrs>=23.1.0",
23
- "wexample-wex-core==6.0.48",
23
+ "wexample-wex-addon-app==0.0.49",
24
+ "wexample-wex-core==6.0.55",
24
25
  ]
25
26
 
26
27
  [project.readme]
@@ -36,6 +37,7 @@ homepage = "https://github.com/wexample/python-wex-dev-python"
36
37
  [project.optional-dependencies]
37
38
  dev = [
38
39
  "pytest",
40
+ "pytest-cov",
39
41
  ]
40
42
 
41
43
  [tool.pdm]
@@ -46,3 +48,11 @@ package-dir = "src"
46
48
  packages = [
47
49
  { include = "wexample_wex_addon_dev_javascript", from = "src" },
48
50
  ]
51
+
52
+ [tool.setuptools.packages.find]
53
+ include = [
54
+ "*",
55
+ ]
56
+ exclude = [
57
+ "wexample_wex_addon_dev_javascript.testing*",
58
+ ]
@@ -2,14 +2,14 @@ from __future__ import annotations
2
2
 
3
3
  from typing import TYPE_CHECKING
4
4
 
5
- from wexample_wex_core.workdir.framework_packages_suite_workdir import (
5
+ from wexample_wex_addon_app.workdir.framework_packages_suite_workdir import (
6
6
  FrameworkPackageSuiteWorkdir,
7
7
  )
8
8
 
9
9
  if TYPE_CHECKING:
10
10
  from pathlib import Path
11
11
 
12
- from wexample_wex_core.workdir.code_base_workdir import CodeBaseWorkdir
12
+ from wexample_wex_addon_app.workdir.code_base_workdir import CodeBaseWorkdir
13
13
 
14
14
 
15
15
  class JavascriptPackagesSuiteWorkdir(FrameworkPackageSuiteWorkdir):
@@ -1,6 +1,6 @@
1
1
  from __future__ import annotations
2
2
 
3
- from wexample_wex_core.workdir.code_base_workdir import CodeBaseWorkdir
3
+ from wexample_wex_addon_app.workdir.code_base_workdir import CodeBaseWorkdir
4
4
 
5
5
 
6
6
  class JavascriptWorkdir(CodeBaseWorkdir):
@@ -1,52 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: wexample-wex-addon-dev-javascript
3
- Version: 0.0.45
4
- Summary: Python dev addon for wex
5
- Author-Email: weeger <contact@wexample.com>
6
- License: MIT
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: License :: OSI Approved :: MIT License
9
- Classifier: Operating System :: OS Independent
10
- Project-URL: homepage, https://github.com/wexample/python-wex-dev-python
11
- Requires-Python: >=3.10
12
- Requires-Dist: attrs>=23.1.0
13
- Requires-Dist: cattrs>=23.1.0
14
- Requires-Dist: wexample-wex-core==6.0.48
15
- Provides-Extra: dev
16
- Requires-Dist: pytest; extra == "dev"
17
- Description-Content-Type: text/markdown
18
-
19
- # wexample-wex-addon-dev-javascript
20
-
21
- Python dev addon for wex
22
-
23
- Version: 0.0.43
24
-
25
- ## Requirements
26
-
27
- - Python >=3.10
28
-
29
- ## Dependencies
30
-
31
- - attrs>=23.1.0
32
- - cattrs>=23.1.0
33
- - wexample-wex-core==6.0.46
34
-
35
- ## Installation
36
-
37
- ```bash
38
- pip install wexample-wex-addon-dev-javascript
39
- ```
40
-
41
- ## Links
42
-
43
- - Homepage: https://github.com/wexample/python-wex-dev-python
44
-
45
- ## License
46
-
47
- MIT
48
- ## Credits
49
-
50
- This package has been developed by [Wexample](https://wexample.com), a collection of tools and utilities to streamline development workflows.
51
-
52
- Visit [wexample.com](https://wexample.com) to discover more tools and resources for efficient development.
@@ -1,34 +0,0 @@
1
- # wexample-wex-addon-dev-javascript
2
-
3
- Python dev addon for wex
4
-
5
- Version: 0.0.43
6
-
7
- ## Requirements
8
-
9
- - Python >=3.10
10
-
11
- ## Dependencies
12
-
13
- - attrs>=23.1.0
14
- - cattrs>=23.1.0
15
- - wexample-wex-core==6.0.46
16
-
17
- ## Installation
18
-
19
- ```bash
20
- pip install wexample-wex-addon-dev-javascript
21
- ```
22
-
23
- ## Links
24
-
25
- - Homepage: https://github.com/wexample/python-wex-dev-python
26
-
27
- ## License
28
-
29
- MIT
30
- ## Credits
31
-
32
- This package has been developed by [Wexample](https://wexample.com), a collection of tools and utilities to streamline development workflows.
33
-
34
- Visit [wexample.com](https://wexample.com) to discover more tools and resources for efficient development.