mockstack 0.6.0__tar.gz → 0.6.1__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 (74) hide show
  1. {mockstack-0.6.0/mockstack.egg-info → mockstack-0.6.1}/PKG-INFO +7 -1
  2. {mockstack-0.6.0 → mockstack-0.6.1/mockstack.egg-info}/PKG-INFO +7 -1
  3. {mockstack-0.6.0 → mockstack-0.6.1}/pyproject.toml +8 -0
  4. {mockstack-0.6.0 → mockstack-0.6.1}/.env.example +0 -0
  5. {mockstack-0.6.0 → mockstack-0.6.1}/.github/workflows/ci.yml +0 -0
  6. {mockstack-0.6.0 → mockstack-0.6.1}/.github/workflows/publish-docs.yml +0 -0
  7. {mockstack-0.6.0 → mockstack-0.6.1}/.github/workflows/publish-to-pypi.yml +0 -0
  8. {mockstack-0.6.0 → mockstack-0.6.1}/.gitignore +0 -0
  9. {mockstack-0.6.0 → mockstack-0.6.1}/.pre-commit-config.yaml +0 -0
  10. {mockstack-0.6.0 → mockstack-0.6.1}/CODE_OF_CONDUCT.md +0 -0
  11. {mockstack-0.6.0 → mockstack-0.6.1}/LICENSE +0 -0
  12. {mockstack-0.6.0 → mockstack-0.6.1}/README.md +0 -0
  13. {mockstack-0.6.0 → mockstack-0.6.1}/SECURITY.md +0 -0
  14. {mockstack-0.6.0 → mockstack-0.6.1}/docs/assets/favicon.ico +0 -0
  15. {mockstack-0.6.0 → mockstack-0.6.1}/docs/assets/logo.png +0 -0
  16. {mockstack-0.6.0 → mockstack-0.6.1}/docs/assets/mockstack.png +0 -0
  17. {mockstack-0.6.0 → mockstack-0.6.1}/docs/configuration.md +0 -0
  18. {mockstack-0.6.0 → mockstack-0.6.1}/docs/strategies/base.md +0 -0
  19. {mockstack-0.6.0 → mockstack-0.6.1}/docs/strategies/filefixtures.md +0 -0
  20. {mockstack-0.6.0 → mockstack-0.6.1}/docs/strategies/proxyrules.md +0 -0
  21. {mockstack-0.6.0 → mockstack-0.6.1}/examples/filefixtures-with-templates/.env.example +0 -0
  22. {mockstack-0.6.0 → mockstack-0.6.1}/examples/filefixtures-with-templates/README.md +0 -0
  23. {mockstack-0.6.0 → mockstack-0.6.1}/examples/filefixtures-with-templates/templates/servicename-api-v1-items.j2 +0 -0
  24. {mockstack-0.6.0 → mockstack-0.6.1}/examples/filefixtures-with-templates/templates/servicename2-api-v2-user.533ec889-7c68-45c8-b21e-4a7e455d1234.j2 +0 -0
  25. {mockstack-0.6.0 → mockstack-0.6.1}/examples/llm/README.md +0 -0
  26. {mockstack-0.6.0 → mockstack-0.6.1}/examples/llm/mockstack-langchain-example.ipynb +0 -0
  27. {mockstack-0.6.0 → mockstack-0.6.1}/examples/llm/templates/openai-v1-chat-completions.j2 +0 -0
  28. {mockstack-0.6.0 → mockstack-0.6.1}/examples/proxyrules-with-rules-file/.env.example +0 -0
  29. {mockstack-0.6.0 → mockstack-0.6.1}/examples/proxyrules-with-rules-file/README.md +0 -0
  30. {mockstack-0.6.0 → mockstack-0.6.1}/examples/proxyrules-with-rules-file/rules.yml +0 -0
  31. {mockstack-0.6.0 → mockstack-0.6.1}/mkdocs.yml +0 -0
  32. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/__init__.py +0 -0
  33. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/config.py +0 -0
  34. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/constants.py +0 -0
  35. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/display.py +0 -0
  36. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/identifiers.py +0 -0
  37. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/intent.py +0 -0
  38. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/lifespan.py +0 -0
  39. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/main.py +0 -0
  40. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/middleware.py +0 -0
  41. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/routers/__init__.py +0 -0
  42. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/routers/catchall.py +0 -0
  43. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/routers/homepage.py +0 -0
  44. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/__init__.py +0 -0
  45. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/base.py +0 -0
  46. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/create_mixin.py +0 -0
  47. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/factory.py +0 -0
  48. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/filefixtures.py +0 -0
  49. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/proxyrules.py +0 -0
  50. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/telemetry.py +0 -0
  51. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/templating.py +0 -0
  52. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/__init__.py +0 -0
  53. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/conftest.py +0 -0
  54. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/fixtures/proxyrules.yml +0 -0
  55. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/fixtures/templates/__init__.py +0 -0
  56. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/fixtures/templates/example-template.j2 +0 -0
  57. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/routers/__init__.py +0 -0
  58. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/routers/test_catchall.py +0 -0
  59. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/routers/test_homepage.py +0 -0
  60. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/strategies/test_create_mixin.py +0 -0
  61. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/strategies/test_filefixtures.py +0 -0
  62. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/strategies/test_proxyrules.py +0 -0
  63. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/test_display.py +0 -0
  64. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/test_identifiers.py +0 -0
  65. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/test_middleware.py +0 -0
  66. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/test_telemetry.py +0 -0
  67. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/test_templating.py +0 -0
  68. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack.egg-info/SOURCES.txt +0 -0
  69. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack.egg-info/dependency_links.txt +0 -0
  70. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack.egg-info/entry_points.txt +0 -0
  71. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack.egg-info/requires.txt +0 -0
  72. {mockstack-0.6.0 → mockstack-0.6.1}/mockstack.egg-info/top_level.txt +0 -0
  73. {mockstack-0.6.0 → mockstack-0.6.1}/setup.cfg +0 -0
  74. {mockstack-0.6.0 → mockstack-0.6.1}/uv.lock +0 -0
@@ -1,11 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mockstack
3
- Version: 0.6.0
3
+ Version: 0.6.1
4
4
  Summary: An API mocking workhorse
5
+ Author-email: Adam Ever-Hadani <mockstack.contact@gmail.com>
5
6
  License-Expression: MIT
6
7
  Project-URL: Homepage, https://github.com/adamhadani/mockstack
7
8
  Project-URL: Issues, https://github.com/adamhadani/mockstack/issues
8
9
  Keywords: mocking,integration-testing,testing,microservices,api
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
9
15
  Requires-Python: >=3.11
10
16
  Description-Content-Type: text/markdown
11
17
  License-File: LICENSE
@@ -1,11 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mockstack
3
- Version: 0.6.0
3
+ Version: 0.6.1
4
4
  Summary: An API mocking workhorse
5
+ Author-email: Adam Ever-Hadani <mockstack.contact@gmail.com>
5
6
  License-Expression: MIT
6
7
  Project-URL: Homepage, https://github.com/adamhadani/mockstack
7
8
  Project-URL: Issues, https://github.com/adamhadani/mockstack/issues
8
9
  Keywords: mocking,integration-testing,testing,microservices,api
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
9
15
  Requires-Python: >=3.11
10
16
  Description-Content-Type: text/markdown
11
17
  License-File: LICENSE
@@ -9,6 +9,14 @@ readme = "README.md"
9
9
  license = "MIT"
10
10
  license-files = ["LICEN[CS]E*"]
11
11
  keywords = ["mocking", "integration-testing", "testing", "microservices", "api"]
12
+ authors = [{ name = "Adam Ever-Hadani", email = "mockstack.contact@gmail.com" }]
13
+ classifiers = [
14
+ "Development Status :: 5 - Production/Stable",
15
+ "Programming Language :: Python",
16
+ "Programming Language :: Python :: 3.11",
17
+ "Programming Language :: Python :: 3.12",
18
+ "Programming Language :: Python :: 3.13",
19
+ ]
12
20
  requires-python = ">=3.11"
13
21
  dependencies = [
14
22
  "colorama>=0.4.6",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes