gwc-pybundle 1.3.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.

Potentially problematic release.


This version of gwc-pybundle might be problematic. Click here for more details.

Files changed (48) hide show
  1. gwc_pybundle-1.3.0/LICENSE.md +25 -0
  2. gwc_pybundle-1.3.0/PKG-INFO +838 -0
  3. gwc_pybundle-1.3.0/README.md +789 -0
  4. gwc_pybundle-1.3.0/gwc_pybundle.egg-info/PKG-INFO +838 -0
  5. gwc_pybundle-1.3.0/gwc_pybundle.egg-info/SOURCES.txt +46 -0
  6. gwc_pybundle-1.3.0/gwc_pybundle.egg-info/dependency_links.txt +1 -0
  7. gwc_pybundle-1.3.0/gwc_pybundle.egg-info/entry_points.txt +2 -0
  8. gwc_pybundle-1.3.0/gwc_pybundle.egg-info/top_level.txt +1 -0
  9. gwc_pybundle-1.3.0/pybundle/__init__.py +0 -0
  10. gwc_pybundle-1.3.0/pybundle/__main__.py +4 -0
  11. gwc_pybundle-1.3.0/pybundle/cli.py +324 -0
  12. gwc_pybundle-1.3.0/pybundle/context.py +324 -0
  13. gwc_pybundle-1.3.0/pybundle/doctor.py +143 -0
  14. gwc_pybundle-1.3.0/pybundle/filters.py +178 -0
  15. gwc_pybundle-1.3.0/pybundle/manifest.py +77 -0
  16. gwc_pybundle-1.3.0/pybundle/packaging.py +45 -0
  17. gwc_pybundle-1.3.0/pybundle/policy.py +132 -0
  18. gwc_pybundle-1.3.0/pybundle/profiles.py +230 -0
  19. gwc_pybundle-1.3.0/pybundle/roadmap_model.py +42 -0
  20. gwc_pybundle-1.3.0/pybundle/roadmap_scan.py +295 -0
  21. gwc_pybundle-1.3.0/pybundle/root_detect.py +14 -0
  22. gwc_pybundle-1.3.0/pybundle/runner.py +78 -0
  23. gwc_pybundle-1.3.0/pybundle/steps/__init__.py +26 -0
  24. gwc_pybundle-1.3.0/pybundle/steps/bandit.py +72 -0
  25. gwc_pybundle-1.3.0/pybundle/steps/base.py +20 -0
  26. gwc_pybundle-1.3.0/pybundle/steps/compileall.py +76 -0
  27. gwc_pybundle-1.3.0/pybundle/steps/context_expand.py +272 -0
  28. gwc_pybundle-1.3.0/pybundle/steps/copy_pack.py +293 -0
  29. gwc_pybundle-1.3.0/pybundle/steps/coverage.py +100 -0
  30. gwc_pybundle-1.3.0/pybundle/steps/duplication.py +94 -0
  31. gwc_pybundle-1.3.0/pybundle/steps/error_refs.py +204 -0
  32. gwc_pybundle-1.3.0/pybundle/steps/handoff_md.py +167 -0
  33. gwc_pybundle-1.3.0/pybundle/steps/interrogate.py +84 -0
  34. gwc_pybundle-1.3.0/pybundle/steps/mypy.py +60 -0
  35. gwc_pybundle-1.3.0/pybundle/steps/pip_audit.py +45 -0
  36. gwc_pybundle-1.3.0/pybundle/steps/pylance.py +562 -0
  37. gwc_pybundle-1.3.0/pybundle/steps/pytest.py +66 -0
  38. gwc_pybundle-1.3.0/pybundle/steps/radon.py +121 -0
  39. gwc_pybundle-1.3.0/pybundle/steps/repro_md.py +161 -0
  40. gwc_pybundle-1.3.0/pybundle/steps/rg_scans.py +78 -0
  41. gwc_pybundle-1.3.0/pybundle/steps/roadmap.py +153 -0
  42. gwc_pybundle-1.3.0/pybundle/steps/ruff.py +111 -0
  43. gwc_pybundle-1.3.0/pybundle/steps/shell.py +74 -0
  44. gwc_pybundle-1.3.0/pybundle/steps/tree.py +116 -0
  45. gwc_pybundle-1.3.0/pybundle/steps/vulture.py +82 -0
  46. gwc_pybundle-1.3.0/pybundle/tools.py +63 -0
  47. gwc_pybundle-1.3.0/pyproject.toml +40 -0
  48. gwc_pybundle-1.3.0/setup.cfg +4 -0
@@ -0,0 +1,25 @@
1
+ The MIT License (MIT)
2
+ =====================
3
+
4
+ Copyright © 2025 Jessica Brown
5
+
6
+ Permission is hereby granted, free of charge, to any person
7
+ obtaining a copy of this software and associated documentation
8
+ files (the “Software”), to deal in the Software without
9
+ restriction, including without limitation the rights to use,
10
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the
12
+ Software is furnished to do so, subject to the following
13
+ conditions:
14
+
15
+ The above copyright notice and this permission notice shall be
16
+ included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25
+ OTHER DEALINGS IN THE SOFTWARE.