mockstack 0.1.0__tar.gz → 0.1.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.1.0/mockstack.egg-info → mockstack-0.1.1}/PKG-INFO +4 -8
- {mockstack-0.1.0 → mockstack-0.1.1}/README.md +3 -7
- {mockstack-0.1.0 → mockstack-0.1.1/mockstack.egg-info}/PKG-INFO +4 -8
- {mockstack-0.1.0 → mockstack-0.1.1}/pyproject.toml +4 -1
- {mockstack-0.1.0 → mockstack-0.1.1}/uv.lock +0 -1
- {mockstack-0.1.0 → mockstack-0.1.1}/.env.example +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/.github/workflows/ci.yml +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/.github/workflows/publish-to-pypi.yml +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/.gitignore +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/.pre-commit-config.yaml +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/CODE_OF_CONDUCT.md +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/LICENSE +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/SECURITY.md +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/__init__.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/config.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/display.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/identifiers.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/lifespan.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/main.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/middleware.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/routers/__init__.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/routers/catchall.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/routers/homepage.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/strategies/__init__.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/strategies/base.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/strategies/factory.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/strategies/filefixtures.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/telemetry.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/templating.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/__init__.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/conftest.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/fixtures/templates/__init__.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/fixtures/templates/example-template.j2 +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/routers/__init__.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/routers/test_catchall.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/routers/test_homepage.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/strategies/test_filefixtures.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/test_display.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/test_identifiers.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/test_middleware.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/test_templating.py +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack.egg-info/SOURCES.txt +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack.egg-info/dependency_links.txt +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack.egg-info/entry_points.txt +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack.egg-info/requires.txt +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/mockstack.egg-info/top_level.txt +0 -0
- {mockstack-0.1.0 → mockstack-0.1.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mockstack
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: An API mocking workhorse
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Project-URL: Homepage, https://github.com/adamhadani/mockstack
|
|
@@ -23,8 +23,8 @@ Dynamic: license-file
|
|
|
23
23
|
# mockstack
|
|
24
24
|
|
|
25
25
|
[](https://github.com/adamhadani/mockstack/actions/workflows/ci.yml)
|
|
26
|
-

|
|
27
|
-

|
|
26
|
+
[](https://github.com/adamhadani/mockstack/blob/main/LICENSE)
|
|
27
|
+
[](https://pypi.org/project/mockstack/)
|
|
28
28
|
|
|
29
29
|
An API mocking workhorse :racehorse:
|
|
30
30
|
|
|
@@ -91,8 +91,4 @@ Copy the included [.env.example](.env.example) file to `.env` and fill in config
|
|
|
91
91
|
|
|
92
92
|
Run in development mode (for live-reload of changes when developing):
|
|
93
93
|
|
|
94
|
-
uv run
|
|
95
|
-
|
|
96
|
-
Or, run in production mode:
|
|
97
|
-
|
|
98
|
-
uv run fastapi run mockstack/main.py
|
|
94
|
+
uv run uvicorn --factory mockstack.main:create_app --reload
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# mockstack
|
|
2
2
|
|
|
3
3
|
[](https://github.com/adamhadani/mockstack/actions/workflows/ci.yml)
|
|
4
|
-

|
|
5
|
-

|
|
4
|
+
[](https://github.com/adamhadani/mockstack/blob/main/LICENSE)
|
|
5
|
+
[](https://pypi.org/project/mockstack/)
|
|
6
6
|
|
|
7
7
|
An API mocking workhorse :racehorse:
|
|
8
8
|
|
|
@@ -69,8 +69,4 @@ Copy the included [.env.example](.env.example) file to `.env` and fill in config
|
|
|
69
69
|
|
|
70
70
|
Run in development mode (for live-reload of changes when developing):
|
|
71
71
|
|
|
72
|
-
uv run
|
|
73
|
-
|
|
74
|
-
Or, run in production mode:
|
|
75
|
-
|
|
76
|
-
uv run fastapi run mockstack/main.py
|
|
72
|
+
uv run uvicorn --factory mockstack.main:create_app --reload
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mockstack
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: An API mocking workhorse
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Project-URL: Homepage, https://github.com/adamhadani/mockstack
|
|
@@ -23,8 +23,8 @@ Dynamic: license-file
|
|
|
23
23
|
# mockstack
|
|
24
24
|
|
|
25
25
|
[](https://github.com/adamhadani/mockstack/actions/workflows/ci.yml)
|
|
26
|
-

|
|
27
|
-

|
|
26
|
+
[](https://github.com/adamhadani/mockstack/blob/main/LICENSE)
|
|
27
|
+
[](https://pypi.org/project/mockstack/)
|
|
28
28
|
|
|
29
29
|
An API mocking workhorse :racehorse:
|
|
30
30
|
|
|
@@ -91,8 +91,4 @@ Copy the included [.env.example](.env.example) file to `.env` and fill in config
|
|
|
91
91
|
|
|
92
92
|
Run in development mode (for live-reload of changes when developing):
|
|
93
93
|
|
|
94
|
-
uv run
|
|
95
|
-
|
|
96
|
-
Or, run in production mode:
|
|
97
|
-
|
|
98
|
-
uv run fastapi run mockstack/main.py
|
|
94
|
+
uv run uvicorn --factory mockstack.main:create_app --reload
|
|
@@ -4,7 +4,6 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "mockstack"
|
|
7
|
-
version = "0.1.0"
|
|
8
7
|
description = "An API mocking workhorse"
|
|
9
8
|
readme = "README.md"
|
|
10
9
|
license = "MIT"
|
|
@@ -22,6 +21,7 @@ dependencies = [
|
|
|
22
21
|
"typer>=0.15.2",
|
|
23
22
|
"uvicorn>=0.34.2",
|
|
24
23
|
]
|
|
24
|
+
dynamic = ["version"]
|
|
25
25
|
|
|
26
26
|
[project.urls]
|
|
27
27
|
Homepage = "https://github.com/adamhadani/mockstack"
|
|
@@ -38,6 +38,9 @@ dev = [
|
|
|
38
38
|
"pytest-cov>=6.1.1",
|
|
39
39
|
]
|
|
40
40
|
|
|
41
|
+
[tool.setuptools_scm]
|
|
42
|
+
# can be empty if no extra settings are needed, presence enables setuptools-scm
|
|
43
|
+
|
|
41
44
|
[tool.mypy]
|
|
42
45
|
namespace_packages = true
|
|
43
46
|
|
|
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
|