modern-di-fastapi 0.1.2__tar.gz → 0.1.3__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.
- {modern_di_fastapi-0.1.2 → modern_di_fastapi-0.1.3}/PKG-INFO +1 -1
- {modern_di_fastapi-0.1.2 → modern_di_fastapi-0.1.3}/pyproject.toml +3 -3
- modern_di_fastapi-0.1.2/Justfile +0 -23
- {modern_di_fastapi-0.1.2 → modern_di_fastapi-0.1.3}/.gitignore +0 -0
- {modern_di_fastapi-0.1.2 → modern_di_fastapi-0.1.3}/README.md +0 -0
- {modern_di_fastapi-0.1.2 → modern_di_fastapi-0.1.3}/modern_di_fastapi/__init__.py +0 -0
- {modern_di_fastapi-0.1.2 → modern_di_fastapi-0.1.3}/modern_di_fastapi/depends.py +0 -0
- {modern_di_fastapi-0.1.2 → modern_di_fastapi-0.1.3}/modern_di_fastapi/middleware.py +0 -0
- {modern_di_fastapi-0.1.2 → modern_di_fastapi-0.1.3}/modern_di_fastapi/py.typed +0 -0
- {modern_di_fastapi-0.1.2 → modern_di_fastapi-0.1.3}/tests/__init__.py +0 -0
- {modern_di_fastapi-0.1.2 → modern_di_fastapi-0.1.3}/tests/test_fastapi_di.py +0 -0
|
@@ -41,9 +41,6 @@ dev = [
|
|
|
41
41
|
"asgi-lifespan",
|
|
42
42
|
]
|
|
43
43
|
|
|
44
|
-
[tool.uv.sources]
|
|
45
|
-
modern-di = { path = "../../" }
|
|
46
|
-
|
|
47
44
|
[build-system]
|
|
48
45
|
requires = ["hatchling", "hatch-vcs"]
|
|
49
46
|
build-backend = "hatchling.build"
|
|
@@ -52,6 +49,9 @@ build-backend = "hatchling.build"
|
|
|
52
49
|
source = "vcs"
|
|
53
50
|
fallback-version = "0"
|
|
54
51
|
|
|
52
|
+
[tool.hatch.build.targets.wheel]
|
|
53
|
+
packages = ["integrations/fastapi"]
|
|
54
|
+
|
|
55
55
|
[tool.mypy]
|
|
56
56
|
python_version = "3.10"
|
|
57
57
|
strict = true
|
modern_di_fastapi-0.1.2/Justfile
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
default: install lint test
|
|
2
|
-
|
|
3
|
-
install:
|
|
4
|
-
uv lock --upgrade
|
|
5
|
-
uv sync --all-extras --frozen
|
|
6
|
-
|
|
7
|
-
lint:
|
|
8
|
-
uv run ruff format .
|
|
9
|
-
uv run ruff check . --fix
|
|
10
|
-
uv run mypy .
|
|
11
|
-
|
|
12
|
-
lint-ci:
|
|
13
|
-
uv run ruff format . --check
|
|
14
|
-
uv run ruff check . --no-fix
|
|
15
|
-
uv run mypy .
|
|
16
|
-
|
|
17
|
-
test *args:
|
|
18
|
-
uv run pytest {{ args }}
|
|
19
|
-
|
|
20
|
-
publish:
|
|
21
|
-
rm -rf dist
|
|
22
|
-
uv build
|
|
23
|
-
uv publish --token $PYPI_TOKEN
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|