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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: modern-di-fastapi
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Modern-DI integration for FastAPI
5
5
  Project-URL: repository, https://github.com/modern-python/modern-di
6
6
  Project-URL: docs, https://modern-di.readthedocs.io
@@ -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
@@ -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