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.
Files changed (47) hide show
  1. {mockstack-0.1.0/mockstack.egg-info → mockstack-0.1.1}/PKG-INFO +4 -8
  2. {mockstack-0.1.0 → mockstack-0.1.1}/README.md +3 -7
  3. {mockstack-0.1.0 → mockstack-0.1.1/mockstack.egg-info}/PKG-INFO +4 -8
  4. {mockstack-0.1.0 → mockstack-0.1.1}/pyproject.toml +4 -1
  5. {mockstack-0.1.0 → mockstack-0.1.1}/uv.lock +0 -1
  6. {mockstack-0.1.0 → mockstack-0.1.1}/.env.example +0 -0
  7. {mockstack-0.1.0 → mockstack-0.1.1}/.github/workflows/ci.yml +0 -0
  8. {mockstack-0.1.0 → mockstack-0.1.1}/.github/workflows/publish-to-pypi.yml +0 -0
  9. {mockstack-0.1.0 → mockstack-0.1.1}/.gitignore +0 -0
  10. {mockstack-0.1.0 → mockstack-0.1.1}/.pre-commit-config.yaml +0 -0
  11. {mockstack-0.1.0 → mockstack-0.1.1}/CODE_OF_CONDUCT.md +0 -0
  12. {mockstack-0.1.0 → mockstack-0.1.1}/LICENSE +0 -0
  13. {mockstack-0.1.0 → mockstack-0.1.1}/SECURITY.md +0 -0
  14. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/__init__.py +0 -0
  15. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/config.py +0 -0
  16. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/display.py +0 -0
  17. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/identifiers.py +0 -0
  18. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/lifespan.py +0 -0
  19. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/main.py +0 -0
  20. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/middleware.py +0 -0
  21. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/routers/__init__.py +0 -0
  22. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/routers/catchall.py +0 -0
  23. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/routers/homepage.py +0 -0
  24. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/strategies/__init__.py +0 -0
  25. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/strategies/base.py +0 -0
  26. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/strategies/factory.py +0 -0
  27. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/strategies/filefixtures.py +0 -0
  28. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/telemetry.py +0 -0
  29. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/templating.py +0 -0
  30. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/__init__.py +0 -0
  31. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/conftest.py +0 -0
  32. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/fixtures/templates/__init__.py +0 -0
  33. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/fixtures/templates/example-template.j2 +0 -0
  34. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/routers/__init__.py +0 -0
  35. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/routers/test_catchall.py +0 -0
  36. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/routers/test_homepage.py +0 -0
  37. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/strategies/test_filefixtures.py +0 -0
  38. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/test_display.py +0 -0
  39. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/test_identifiers.py +0 -0
  40. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/test_middleware.py +0 -0
  41. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack/tests/test_templating.py +0 -0
  42. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack.egg-info/SOURCES.txt +0 -0
  43. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack.egg-info/dependency_links.txt +0 -0
  44. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack.egg-info/entry_points.txt +0 -0
  45. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack.egg-info/requires.txt +0 -0
  46. {mockstack-0.1.0 → mockstack-0.1.1}/mockstack.egg-info/top_level.txt +0 -0
  47. {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.0
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
  [![CI](https://github.com/adamhadani/mockstack/actions/workflows/ci.yml/badge.svg)](https://github.com/adamhadani/mockstack/actions/workflows/ci.yml)
26
- ![GitHub License](https://img.shields.io/github/license/adamhadani/mockstack)
27
- ![PyPI - Version](https://img.shields.io/pypi/v/mockstack)
26
+ [![GitHub License](https://img.shields.io/github/license/adamhadani/mockstack)](https://github.com/adamhadani/mockstack/blob/main/LICENSE)
27
+ [![PyPI - Version](https://img.shields.io/pypi/v/mockstack)](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 fastapi dev mockstack/main.py
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
  [![CI](https://github.com/adamhadani/mockstack/actions/workflows/ci.yml/badge.svg)](https://github.com/adamhadani/mockstack/actions/workflows/ci.yml)
4
- ![GitHub License](https://img.shields.io/github/license/adamhadani/mockstack)
5
- ![PyPI - Version](https://img.shields.io/pypi/v/mockstack)
4
+ [![GitHub License](https://img.shields.io/github/license/adamhadani/mockstack)](https://github.com/adamhadani/mockstack/blob/main/LICENSE)
5
+ [![PyPI - Version](https://img.shields.io/pypi/v/mockstack)](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 fastapi dev mockstack/main.py
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.0
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
  [![CI](https://github.com/adamhadani/mockstack/actions/workflows/ci.yml/badge.svg)](https://github.com/adamhadani/mockstack/actions/workflows/ci.yml)
26
- ![GitHub License](https://img.shields.io/github/license/adamhadani/mockstack)
27
- ![PyPI - Version](https://img.shields.io/pypi/v/mockstack)
26
+ [![GitHub License](https://img.shields.io/github/license/adamhadani/mockstack)](https://github.com/adamhadani/mockstack/blob/main/LICENSE)
27
+ [![PyPI - Version](https://img.shields.io/pypi/v/mockstack)](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 fastapi dev mockstack/main.py
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
 
@@ -477,7 +477,6 @@ wheels = [
477
477
 
478
478
  [[package]]
479
479
  name = "mockstack"
480
- version = "0.0.5"
481
480
  source = { editable = "." }
482
481
  dependencies = [
483
482
  { name = "colorama" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes