haraka 0.2.13__tar.gz → 0.2.14__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 (36) hide show
  1. haraka-0.2.14/MANIFEST.in +1 -0
  2. {haraka-0.2.13 → haraka-0.2.14}/PKG-INFO +1 -1
  3. haraka-0.2.14/haraka/utils/manifests/go-grpc-gateway-buf.yml +0 -0
  4. haraka-0.2.14/haraka/utils/manifests/go-grpc-protoc.yml +26 -0
  5. haraka-0.2.14/haraka/utils/manifests/java-springboot.yml +23 -0
  6. haraka-0.2.14/haraka/utils/manifests/python-fastapi.yml +23 -0
  7. {haraka-0.2.13 → haraka-0.2.14}/haraka.egg-info/PKG-INFO +1 -1
  8. {haraka-0.2.13 → haraka-0.2.14}/haraka.egg-info/SOURCES.txt +6 -1
  9. {haraka-0.2.13 → haraka-0.2.14}/pyproject.toml +8 -1
  10. {haraka-0.2.13 → haraka-0.2.14}/haraka/__init__.py +0 -0
  11. {haraka-0.2.13 → haraka-0.2.14}/haraka/art/__init__.py +0 -0
  12. {haraka-0.2.13 → haraka-0.2.14}/haraka/art/ascii/__init__.py +0 -0
  13. {haraka-0.2.13 → haraka-0.2.14}/haraka/art/ascii/assets.py +0 -0
  14. {haraka-0.2.13 → haraka-0.2.14}/haraka/art/ascii/frame/__init__.py +0 -0
  15. {haraka-0.2.13 → haraka-0.2.14}/haraka/art/ascii/frame/border.py +0 -0
  16. {haraka-0.2.13 → haraka-0.2.14}/haraka/art/ascii/frame/framer.py +0 -0
  17. {haraka-0.2.13 → haraka-0.2.14}/haraka/art/ascii/frame/width_utils.py +0 -0
  18. {haraka-0.2.13 → haraka-0.2.14}/haraka/art/create.py +0 -0
  19. {haraka-0.2.13 → haraka-0.2.14}/haraka/post_gen/__init__.py +0 -0
  20. {haraka-0.2.13 → haraka-0.2.14}/haraka/post_gen/config/__init__.py +0 -0
  21. {haraka-0.2.13 → haraka-0.2.14}/haraka/post_gen/config/config.py +0 -0
  22. {haraka-0.2.13 → haraka-0.2.14}/haraka/post_gen/runner.py +0 -0
  23. {haraka-0.2.13 → haraka-0.2.14}/haraka/post_gen/service/__init__.py +0 -0
  24. {haraka-0.2.13 → haraka-0.2.14}/haraka/post_gen/service/assets.py +0 -0
  25. {haraka-0.2.13 → haraka-0.2.14}/haraka/post_gen/service/command.py +0 -0
  26. {haraka-0.2.13 → haraka-0.2.14}/haraka/post_gen/service/files.py +0 -0
  27. {haraka-0.2.13 → haraka-0.2.14}/haraka/post_gen/service/gitops.py +0 -0
  28. {haraka-0.2.13 → haraka-0.2.14}/haraka/post_gen/service/purge.py +0 -0
  29. {haraka-0.2.13 → haraka-0.2.14}/haraka/utils/__init__.py +0 -0
  30. {haraka-0.2.13 → haraka-0.2.14}/haraka/utils/common/__init__.py +0 -0
  31. {haraka-0.2.13 → haraka-0.2.14}/haraka/utils/common/utils.py +0 -0
  32. {haraka-0.2.13 → haraka-0.2.14}/haraka/utils/logging/__init__.py +0 -0
  33. {haraka-0.2.13 → haraka-0.2.14}/haraka/utils/logging/log_util.py +0 -0
  34. {haraka-0.2.13 → haraka-0.2.14}/haraka.egg-info/dependency_links.txt +0 -0
  35. {haraka-0.2.13 → haraka-0.2.14}/haraka.egg-info/top_level.txt +0 -0
  36. {haraka-0.2.13 → haraka-0.2.14}/setup.cfg +0 -0
@@ -0,0 +1 @@
1
+ include haraka/utils/manifests/*.yml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: haraka
3
- Version: 0.2.13
3
+ Version: 0.2.14
4
4
  Summary: Reusable post-generation helper for Cookiecutter micro-service templates
5
5
  Author-email: Will Burks <will@example.com>
6
6
  License: MIT
@@ -0,0 +1,26 @@
1
+ variant: go-grpc-protoc
2
+
3
+ keep:
4
+ # ── application source (Go) ─────────────────────────
5
+ - cmd/** # main binary entry-point
6
+ - internal/** # config, handlers, server logic
7
+ - pkg/proto/** # generated protobuf / proto defs
8
+ - configs/** # runtime config files
9
+ - go.mod
10
+ - git.ignore
11
+
12
+ # ── tests ───────────────────────────────────────────
13
+ - test/** # Go integration + unit tests
14
+
15
+ # ── build & project metadata ────────────────────────
16
+ - Makefile
17
+ - Dockerfile
18
+ - README.md
19
+
20
+ # ── IDE / run configs ───────────────────────────────
21
+ - runConfigurations/Go/**
22
+
23
+ # ── deployment & infra (shared) ─────────────────────
24
+ - skaffold.yaml
25
+ - chart/**
26
+ - infra/**
@@ -0,0 +1,23 @@
1
+ variant: java-springboot
2
+
3
+ keep:
4
+ # ── application source ────────────────────────────
5
+ - src/main/java/**
6
+ - src/main/resources/**
7
+
8
+ # ── tests ─────────────────────────────────────────
9
+ - src/test/java/**
10
+
11
+ # ── build & project metadata ──────────────────────
12
+ - pom.xml
13
+ - Dockerfile
14
+ - Makefile
15
+ - README.md
16
+
17
+ # ── IDE / run configs ─────────────────────────────
18
+ - runConfigurations/SpringBoot/**
19
+
20
+ # ── deployment & infra (shared) ───────────────────
21
+ - skaffold.yaml
22
+ - chart/**
23
+ - infra/**
@@ -0,0 +1,23 @@
1
+ variant: python-fastapi
2
+
3
+ keep:
4
+ # ── application source ─────────────────────────────
5
+ - src/app/**
6
+
7
+ # ── tests ──────────────────────────────────────────
8
+ - tests/**
9
+ - pytest.ini
10
+
11
+ # ── project scripts & metadata ─────────────────────
12
+ - Dockerfile
13
+ - Makefile
14
+ - requirements.txt
15
+ - README.md
16
+
17
+ # ── IDE / run configs ──────────────────────────────
18
+ - runConfigurations/Python/FastAPI.run.xml
19
+
20
+ # ── deployment & infra (shared) ────────────────────
21
+ - skaffold.yaml
22
+ - chart/**
23
+ - infra/**
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: haraka
3
- Version: 0.2.13
3
+ Version: 0.2.14
4
4
  Summary: Reusable post-generation helper for Cookiecutter micro-service templates
5
5
  Author-email: Will Burks <will@example.com>
6
6
  License: MIT
@@ -1,3 +1,4 @@
1
+ MANIFEST.in
1
2
  pyproject.toml
2
3
  haraka/__init__.py
3
4
  haraka.egg-info/PKG-INFO
@@ -26,4 +27,8 @@ haraka/utils/__init__.py
26
27
  haraka/utils/common/__init__.py
27
28
  haraka/utils/common/utils.py
28
29
  haraka/utils/logging/__init__.py
29
- haraka/utils/logging/log_util.py
30
+ haraka/utils/logging/log_util.py
31
+ haraka/utils/manifests/go-grpc-gateway-buf.yml
32
+ haraka/utils/manifests/go-grpc-protoc.yml
33
+ haraka/utils/manifests/java-springboot.yml
34
+ haraka/utils/manifests/python-fastapi.yml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "haraka"
7
- version = "0.2.13"
7
+ version = "0.2.14"
8
8
  description = "Reusable post-generation helper for Cookiecutter micro-service templates"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -24,3 +24,10 @@ Source = "https://github.com/wjb-dev/comet-postgen"
24
24
 
25
25
  [tool.setuptools.packages.find]
26
26
  where = ["."]
27
+
28
+ [tool.setuptools.package-data]
29
+ "haraka.utils.manifests" = ["*.yml"]
30
+
31
+ [tool.setuptools]
32
+ include-package-data = true
33
+
File without changes
File without changes
File without changes
File without changes