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.
- {mockstack-0.6.0/mockstack.egg-info → mockstack-0.6.1}/PKG-INFO +7 -1
- {mockstack-0.6.0 → mockstack-0.6.1/mockstack.egg-info}/PKG-INFO +7 -1
- {mockstack-0.6.0 → mockstack-0.6.1}/pyproject.toml +8 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/.env.example +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/.github/workflows/ci.yml +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/.github/workflows/publish-docs.yml +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/.github/workflows/publish-to-pypi.yml +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/.gitignore +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/.pre-commit-config.yaml +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/CODE_OF_CONDUCT.md +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/LICENSE +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/README.md +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/SECURITY.md +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/docs/assets/favicon.ico +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/docs/assets/logo.png +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/docs/assets/mockstack.png +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/docs/configuration.md +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/docs/strategies/base.md +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/docs/strategies/filefixtures.md +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/docs/strategies/proxyrules.md +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/examples/filefixtures-with-templates/.env.example +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/examples/filefixtures-with-templates/README.md +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/examples/filefixtures-with-templates/templates/servicename-api-v1-items.j2 +0 -0
- {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
- {mockstack-0.6.0 → mockstack-0.6.1}/examples/llm/README.md +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/examples/llm/mockstack-langchain-example.ipynb +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/examples/llm/templates/openai-v1-chat-completions.j2 +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/examples/proxyrules-with-rules-file/.env.example +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/examples/proxyrules-with-rules-file/README.md +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/examples/proxyrules-with-rules-file/rules.yml +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mkdocs.yml +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/__init__.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/config.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/constants.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/display.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/identifiers.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/intent.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/lifespan.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/main.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/middleware.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/routers/__init__.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/routers/catchall.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/routers/homepage.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/__init__.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/base.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/create_mixin.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/factory.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/filefixtures.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/strategies/proxyrules.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/telemetry.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/templating.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/__init__.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/conftest.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/fixtures/proxyrules.yml +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/fixtures/templates/__init__.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/fixtures/templates/example-template.j2 +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/routers/__init__.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/routers/test_catchall.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/routers/test_homepage.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/strategies/test_create_mixin.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/strategies/test_filefixtures.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/strategies/test_proxyrules.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/test_display.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/test_identifiers.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/test_middleware.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/test_telemetry.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack/tests/test_templating.py +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack.egg-info/SOURCES.txt +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack.egg-info/dependency_links.txt +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack.egg-info/entry_points.txt +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack.egg-info/requires.txt +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/mockstack.egg-info/top_level.txt +0 -0
- {mockstack-0.6.0 → mockstack-0.6.1}/setup.cfg +0 -0
- {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.
|
|
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.
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|