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