wexample-wex-addon-dev-css 6.0.36__tar.gz → 6.0.38__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-wex-addon-dev-css
3
- Version: 6.0.36
3
+ Version: 6.0.38
4
4
  Author-Email: weeger <contact@wexample.com>
5
5
  License: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -9,7 +9,7 @@ Classifier: Operating System :: OS Independent
9
9
  Requires-Python: >=3.10
10
10
  Requires-Dist: attrs>=23.1.0
11
11
  Requires-Dist: cattrs>=23.1.0
12
- Requires-Dist: wexample-wex-addon-app>=16.6.0
12
+ Requires-Dist: wexample-wex-addon-app>=18.0.0
13
13
  Provides-Extra: dev
14
14
  Requires-Dist: pytest; extra == "dev"
15
15
  Requires-Dist: pytest-cov; extra == "dev"
@@ -17,6 +17,124 @@ Description-Content-Type: text/markdown
17
17
 
18
18
  # wex_addon_dev_css
19
19
 
20
+ Version: 6.0.38
21
+
22
+ ## Table of Contents
23
+
24
+ - [Tests](#tests)
25
+ - [Suite Integration](#suite-integration)
26
+ - [Dependencies](#dependencies)
27
+ - [Versioning](#versioning)
28
+ - [License](#license)
29
+ - [Suite Integration](#suite-integration)
30
+ - [Suite Signature](#suite-signature)
31
+ - [Introduction](#introduction)
32
+ - [Roadmap](#roadmap)
33
+ - [Status Compatibility](#status-compatibility)
34
+ - [Useful Links](#useful-links)
35
+ - [Migration Notes](#migration-notes)
36
+
37
+ ## Tests
38
+
39
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
40
+
41
+ ### Installation
42
+
43
+ First, install the required testing dependencies:
44
+ ```bash
45
+ .venv/bin/python -m pip install pytest pytest-cov
46
+ ```
47
+
48
+ ### Basic Usage
49
+
50
+ Run all tests with coverage:
51
+ ```bash
52
+ .venv/bin/python -m pytest --cov --cov-report=html
53
+ ```
54
+
55
+ ### Common Commands
56
+ ```bash
57
+ # Run tests with coverage for a specific module
58
+ .venv/bin/python -m pytest --cov=your_module
59
+
60
+ # Show which lines are not covered
61
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
62
+
63
+ # Generate an HTML coverage report
64
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
65
+
66
+ # Combine terminal and HTML reports
67
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
68
+
69
+ # Run specific test file with coverage
70
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
71
+ ```
72
+
73
+ ### Viewing HTML Reports
74
+
75
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
76
+
77
+ ### Coverage Threshold
78
+
79
+ To enforce a minimum coverage percentage:
80
+ ```bash
81
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
82
+ ```
83
+
84
+ This will cause the test suite to fail if coverage drops below 80%.
85
+
86
+ ## Integration in the Suite
87
+
88
+ 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.
89
+
90
+ ### Related Packages
91
+
92
+ 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.
93
+
94
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
95
+
96
+ ## Dependencies
97
+
98
+ - attrs: >=23.1.0
99
+ - cattrs: >=23.1.0
100
+ - wexample-wex-addon-app: >=18.0.0
101
+
102
+ ## Versioning & Compatibility Policy
103
+
104
+ Wexample packages follow **Semantic Versioning** (SemVer):
105
+
106
+ - **MAJOR**: Breaking changes
107
+ - **MINOR**: New features, backward compatible
108
+ - **PATCH**: Bug fixes, backward compatible
109
+
110
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
111
+
112
+ ## License
113
+
114
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
115
+
116
+ Free to use in both personal and commercial projects.
117
+
118
+ ## Integration in the Suite
119
+
120
+ 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.
121
+
122
+ ### Related Packages
123
+
124
+ 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.
125
+
126
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
127
+
128
+ # About us
129
+
130
+ [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.
131
+
132
+ 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.
133
+
134
+ 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.
135
+
136
+ # wex_addon_dev_css
137
+
20
138
  Version: 6.0.36
21
139
 
22
140
  ## Table of Contents
@@ -309,3 +427,33 @@ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_css/i
309
427
  When upgrading between major versions, refer to the migration guides in the documentation.
310
428
 
311
429
  Breaking changes are clearly documented with upgrade paths and examples.
430
+
431
+ ## Known Limitations & Roadmap
432
+
433
+ Current limitations and planned features are tracked in the GitHub issues.
434
+
435
+ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_css/issues) for upcoming features and improvements.
436
+
437
+ ## Status & Compatibility
438
+
439
+ **Maturity**: Production-ready
440
+
441
+ **Python Support**: >=3.10
442
+
443
+ **OS Support**: Linux, macOS, Windows
444
+
445
+ **Status**: Actively maintained
446
+
447
+ ## Useful Links
448
+
449
+ - **Homepage**: https://github.com/wexample/python-wex-addon-dev-css
450
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
451
+ - **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-css/issues
452
+ - **Discussions**: https://github.com/wexample/python-wex-addon-dev-css/discussions
453
+ - **PyPI**: [pypi.org/project/wex_addon_dev_css](https://pypi.org/project/wex_addon_dev_css/)
454
+
455
+ ## Migration Notes
456
+
457
+ When upgrading between major versions, refer to the migration guides in the documentation.
458
+
459
+ Breaking changes are clearly documented with upgrade paths and examples.
@@ -1,5 +1,123 @@
1
1
  # wex_addon_dev_css
2
2
 
3
+ Version: 6.0.38
4
+
5
+ ## Table of Contents
6
+
7
+ - [Tests](#tests)
8
+ - [Suite Integration](#suite-integration)
9
+ - [Dependencies](#dependencies)
10
+ - [Versioning](#versioning)
11
+ - [License](#license)
12
+ - [Suite Integration](#suite-integration)
13
+ - [Suite Signature](#suite-signature)
14
+ - [Introduction](#introduction)
15
+ - [Roadmap](#roadmap)
16
+ - [Status Compatibility](#status-compatibility)
17
+ - [Useful Links](#useful-links)
18
+ - [Migration Notes](#migration-notes)
19
+
20
+ ## Tests
21
+
22
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
23
+
24
+ ### Installation
25
+
26
+ First, install the required testing dependencies:
27
+ ```bash
28
+ .venv/bin/python -m pip install pytest pytest-cov
29
+ ```
30
+
31
+ ### Basic Usage
32
+
33
+ Run all tests with coverage:
34
+ ```bash
35
+ .venv/bin/python -m pytest --cov --cov-report=html
36
+ ```
37
+
38
+ ### Common Commands
39
+ ```bash
40
+ # Run tests with coverage for a specific module
41
+ .venv/bin/python -m pytest --cov=your_module
42
+
43
+ # Show which lines are not covered
44
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
45
+
46
+ # Generate an HTML coverage report
47
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
48
+
49
+ # Combine terminal and HTML reports
50
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
51
+
52
+ # Run specific test file with coverage
53
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
54
+ ```
55
+
56
+ ### Viewing HTML Reports
57
+
58
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
59
+
60
+ ### Coverage Threshold
61
+
62
+ To enforce a minimum coverage percentage:
63
+ ```bash
64
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
65
+ ```
66
+
67
+ This will cause the test suite to fail if coverage drops below 80%.
68
+
69
+ ## Integration in the Suite
70
+
71
+ 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.
72
+
73
+ ### Related Packages
74
+
75
+ 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.
76
+
77
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
78
+
79
+ ## Dependencies
80
+
81
+ - attrs: >=23.1.0
82
+ - cattrs: >=23.1.0
83
+ - wexample-wex-addon-app: >=18.0.0
84
+
85
+ ## Versioning & Compatibility Policy
86
+
87
+ Wexample packages follow **Semantic Versioning** (SemVer):
88
+
89
+ - **MAJOR**: Breaking changes
90
+ - **MINOR**: New features, backward compatible
91
+ - **PATCH**: Bug fixes, backward compatible
92
+
93
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
94
+
95
+ ## License
96
+
97
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
98
+
99
+ Free to use in both personal and commercial projects.
100
+
101
+ ## Integration in the Suite
102
+
103
+ 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.
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](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.
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
+
119
+ # wex_addon_dev_css
120
+
3
121
  Version: 6.0.36
4
122
 
5
123
  ## Table of Contents
@@ -292,3 +410,33 @@ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_css/i
292
410
  When upgrading between major versions, refer to the migration guides in the documentation.
293
411
 
294
412
  Breaking changes are clearly documented with upgrade paths and examples.
413
+
414
+ ## Known Limitations & Roadmap
415
+
416
+ Current limitations and planned features are tracked in the GitHub issues.
417
+
418
+ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_css/issues) for upcoming features and improvements.
419
+
420
+ ## Status & Compatibility
421
+
422
+ **Maturity**: Production-ready
423
+
424
+ **Python Support**: >=3.10
425
+
426
+ **OS Support**: Linux, macOS, Windows
427
+
428
+ **Status**: Actively maintained
429
+
430
+ ## Useful Links
431
+
432
+ - **Homepage**: https://github.com/wexample/python-wex-addon-dev-css
433
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
434
+ - **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-css/issues
435
+ - **Discussions**: https://github.com/wexample/python-wex-addon-dev-css/discussions
436
+ - **PyPI**: [pypi.org/project/wex_addon_dev_css](https://pypi.org/project/wex_addon_dev_css/)
437
+
438
+ ## Migration Notes
439
+
440
+ When upgrading between major versions, refer to the migration guides in the documentation.
441
+
442
+ Breaking changes are clearly documented with upgrade paths and examples.
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "wexample-wex-addon-dev-css"
9
- version = "6.0.36"
9
+ version = "6.0.38"
10
10
  authors = [
11
11
  { name = "weeger", email = "contact@wexample.com" },
12
12
  ]
@@ -19,7 +19,7 @@ classifiers = [
19
19
  dependencies = [
20
20
  "attrs>=23.1.0",
21
21
  "cattrs>=23.1.0",
22
- "wexample-wex-addon-app>=16.6.0",
22
+ "wexample-wex-addon-app>=18.0.0",
23
23
  ]
24
24
 
25
25
  [project.readme]