wexample-wex-addon-dev-javascript 0.0.45__tar.gz → 0.0.46__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.46/PKG-INFO +138 -0
  2. wexample_wex_addon_dev_javascript-0.0.46/README.md +118 -0
  3. {wexample_wex_addon_dev_javascript-0.0.45 → wexample_wex_addon_dev_javascript-0.0.46}/pyproject.toml +12 -2
  4. wexample_wex_addon_dev_javascript-0.0.46/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.46}/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.46}/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.46}/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.46/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.46}/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.46}/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.46}/src/wexample_wex_addon_dev_javascript/workdir/javascript_package_workdir.py +0 -0
@@ -0,0 +1,138 @@
1
+ Metadata-Version: 2.1
2
+ Name: wexample-wex-addon-dev-javascript
3
+ Version: 0.0.46
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.47
15
+ Requires-Dist: wexample-wex-core==6.0.49
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.46
24
+
25
+ Python dev addon for wex
26
+
27
+ ## Code Quality & Typing
28
+
29
+ All the suite packages follow strict quality standards:
30
+
31
+ - **Type hints**: Full type coverage with mypy validation
32
+ - **Code formatting**: Enforced with black and isort
33
+ - **Linting**: Comprehensive checks with custom scripts and tools
34
+ - **Testing**: High test coverage requirements
35
+
36
+ These standards ensure reliability and maintainability across the suite.
37
+
38
+ ## Versioning & Compatibility Policy
39
+
40
+ Wexample packages follow **Semantic Versioning** (SemVer):
41
+
42
+ - **MAJOR**: Breaking changes
43
+ - **MINOR**: New features, backward compatible
44
+ - **PATCH**: Bug fixes, backward compatible
45
+
46
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
47
+
48
+ ## Changelog
49
+
50
+ See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
51
+
52
+ Major changes are documented with migration guides when applicable.
53
+
54
+ ## Migration Notes
55
+
56
+ When upgrading between major versions, refer to the migration guides in the documentation.
57
+
58
+ Breaking changes are clearly documented with upgrade paths and examples.
59
+
60
+ ## Known Limitations & Roadmap
61
+
62
+ Current limitations and planned features are tracked in the GitHub issues.
63
+
64
+ See the [project roadmap](https://github.com/wexample/python-wex-dev-python/issues) for upcoming features and improvements.
65
+
66
+ ## Security Policy
67
+
68
+ ### Reporting Vulnerabilities
69
+
70
+ If you discover a security vulnerability, please email security@wexample.com.
71
+
72
+ **Do not** open public issues for security vulnerabilities.
73
+
74
+ We take security seriously and will respond promptly to verified reports.
75
+
76
+ ## Privacy & Telemetry
77
+
78
+ This package does **not** collect any telemetry or usage data.
79
+
80
+ Your privacy is respected — no data is transmitted to external services.
81
+
82
+ ## Support Channels
83
+
84
+ - **GitHub Issues**: Bug reports and feature requests
85
+ - **GitHub Discussions**: Questions and community support
86
+ - **Documentation**: Comprehensive guides and API reference
87
+ - **Email**: contact@wexample.com for general inquiries
88
+
89
+ Community support is available through GitHub Discussions.
90
+
91
+ ## Contribution Guidelines
92
+
93
+ We welcome contributions to the Wexample suite!
94
+
95
+ ### How to Contribute
96
+
97
+ 1. **Fork** the repository
98
+ 2. **Create** a feature branch
99
+ 3. **Make** your changes
100
+ 4. **Test** thoroughly
101
+ 5. **Submit** a pull request
102
+
103
+ ## Maintainers & Authors
104
+
105
+ Maintained by the Wexample team and community contributors.
106
+
107
+ See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the full list of contributors.
108
+
109
+ ## License
110
+
111
+ MIT
112
+
113
+ ## Useful Links
114
+
115
+ - **Homepage**: https://github.com/wexample/python-wex-dev-python
116
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
117
+ - **Issue Tracker**: https://github.com/wexample/python-wex-dev-python/issues
118
+ - **Discussions**: https://github.com/wexample/python-wex-dev-python/discussions
119
+ - **PyPI**: [pypi.org/project/wexample-wex-addon-dev-javascript](https://pypi.org/project/wexample-wex-addon-dev-javascript/)
120
+
121
+ ## Integration in the Suite
122
+
123
+ This package is part of the **Wexample Suite** — a collection of high-quality Python packages designed to work seamlessly together.
124
+
125
+ ### Related Packages
126
+
127
+ 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.
128
+
129
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
130
+
131
+ # About us
132
+
133
+ 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.
134
+
135
+ 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.
136
+
137
+ 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.
138
+
@@ -0,0 +1,118 @@
1
+ # wexample-wex-addon-dev-javascript
2
+
3
+ Version: 0.0.46
4
+
5
+ Python dev addon for wex
6
+
7
+ ## Code Quality & Typing
8
+
9
+ All the suite packages follow strict quality standards:
10
+
11
+ - **Type hints**: Full type coverage with mypy validation
12
+ - **Code formatting**: Enforced with black and isort
13
+ - **Linting**: Comprehensive checks with custom scripts and tools
14
+ - **Testing**: High test coverage requirements
15
+
16
+ These standards ensure reliability and maintainability across the suite.
17
+
18
+ ## Versioning & Compatibility Policy
19
+
20
+ Wexample packages follow **Semantic Versioning** (SemVer):
21
+
22
+ - **MAJOR**: Breaking changes
23
+ - **MINOR**: New features, backward compatible
24
+ - **PATCH**: Bug fixes, backward compatible
25
+
26
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
27
+
28
+ ## Changelog
29
+
30
+ See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
31
+
32
+ Major changes are documented with migration guides when applicable.
33
+
34
+ ## Migration Notes
35
+
36
+ When upgrading between major versions, refer to the migration guides in the documentation.
37
+
38
+ Breaking changes are clearly documented with upgrade paths and examples.
39
+
40
+ ## Known Limitations & Roadmap
41
+
42
+ Current limitations and planned features are tracked in the GitHub issues.
43
+
44
+ See the [project roadmap](https://github.com/wexample/python-wex-dev-python/issues) for upcoming features and improvements.
45
+
46
+ ## Security Policy
47
+
48
+ ### Reporting Vulnerabilities
49
+
50
+ If you discover a security vulnerability, please email security@wexample.com.
51
+
52
+ **Do not** open public issues for security vulnerabilities.
53
+
54
+ We take security seriously and will respond promptly to verified reports.
55
+
56
+ ## Privacy & Telemetry
57
+
58
+ This package does **not** collect any telemetry or usage data.
59
+
60
+ Your privacy is respected — no data is transmitted to external services.
61
+
62
+ ## Support Channels
63
+
64
+ - **GitHub Issues**: Bug reports and feature requests
65
+ - **GitHub Discussions**: Questions and community support
66
+ - **Documentation**: Comprehensive guides and API reference
67
+ - **Email**: contact@wexample.com for general inquiries
68
+
69
+ Community support is available through GitHub Discussions.
70
+
71
+ ## Contribution Guidelines
72
+
73
+ We welcome contributions to the Wexample suite!
74
+
75
+ ### How to Contribute
76
+
77
+ 1. **Fork** the repository
78
+ 2. **Create** a feature branch
79
+ 3. **Make** your changes
80
+ 4. **Test** thoroughly
81
+ 5. **Submit** a pull request
82
+
83
+ ## Maintainers & Authors
84
+
85
+ Maintained by the Wexample team and community contributors.
86
+
87
+ See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the full list of contributors.
88
+
89
+ ## License
90
+
91
+ MIT
92
+
93
+ ## Useful Links
94
+
95
+ - **Homepage**: https://github.com/wexample/python-wex-dev-python
96
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
97
+ - **Issue Tracker**: https://github.com/wexample/python-wex-dev-python/issues
98
+ - **Discussions**: https://github.com/wexample/python-wex-dev-python/discussions
99
+ - **PyPI**: [pypi.org/project/wexample-wex-addon-dev-javascript](https://pypi.org/project/wexample-wex-addon-dev-javascript/)
100
+
101
+ ## Integration in the Suite
102
+
103
+ This package is part of the **Wexample Suite** — a collection of high-quality Python packages designed to work seamlessly together.
104
+
105
+ ### Related Packages
106
+
107
+ 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.
108
+
109
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
110
+
111
+ # About us
112
+
113
+ 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.
114
+
115
+ 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.
116
+
117
+ 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.
118
+
@@ -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.46"
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.47",
24
+ "wexample-wex-core==6.0.49",
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.