modern-di 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.
Potentially problematic release.
This version of modern-di might be problematic. Click here for more details.
- {modern_di-0.1.0 → modern_di-0.1.1}/PKG-INFO +5 -5
- {modern_di-0.1.0 → modern_di-0.1.1}/README.md +1 -1
- {modern_di-0.1.0 → modern_di-0.1.1}/pyproject.toml +3 -3
- {modern_di-0.1.0 → modern_di-0.1.1}/.github/workflows/ci.yml +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/.github/workflows/publish.yml +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/.gitignore +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/Justfile +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/LICENSE +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/docs/conf.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/docs/dev/contributing.md +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/docs/dev/development-notes.md +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/docs/index.md +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/docs/requirements.txt +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/modern_di/__init__.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/modern_di/container.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/modern_di/graph.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/modern_di/py.typed +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/modern_di/resolver_state.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/modern_di/resolvers/__init__.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/modern_di/resolvers/base.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/modern_di/resolvers/factory.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/modern_di/resolvers/resource.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/modern_di/scope.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/tests/__init__.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/tests/creators.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/tests/resolvers/__init__.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/tests/resolvers/test_factory.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/tests/resolvers/test_resource.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/tests/test_container.py +0 -0
- {modern_di-0.1.0 → modern_di-0.1.1}/tests/test_graph.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: modern-di
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
5
|
-
Project-URL: repository, https://github.com/modern-python/
|
|
6
|
-
Project-URL: docs, https://
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Dependency Injection framework with IOC-container and scopes
|
|
5
|
+
Project-URL: repository, https://github.com/modern-python/modern-di
|
|
6
|
+
Project-URL: docs, https://modern-di.readthedocs.io
|
|
7
7
|
Author-email: Artur Shiriev <me@shiriev.ru>
|
|
8
8
|
License-Expression: MIT
|
|
9
9
|
License-File: LICENSE
|
|
@@ -28,7 +28,7 @@ Description-Content-Type: text/markdown
|
|
|
28
28
|
Dependency injection framework for Python inspired by `dependency-injector` and `dishka`.
|
|
29
29
|
|
|
30
30
|
It is production-ready and gives you the following:
|
|
31
|
-
-
|
|
31
|
+
- DI framework with IOC-container and scopes.
|
|
32
32
|
- Async and sync resolving.
|
|
33
33
|
- Python 3.10-3.13 support.
|
|
34
34
|
- Full coverage by types annotations (mypy in strict mode).
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
Dependency injection framework for Python inspired by `dependency-injector` and `dishka`.
|
|
10
10
|
|
|
11
11
|
It is production-ready and gives you the following:
|
|
12
|
-
-
|
|
12
|
+
- DI framework with IOC-container and scopes.
|
|
13
13
|
- Async and sync resolving.
|
|
14
14
|
- Python 3.10-3.13 support.
|
|
15
15
|
- Full coverage by types annotations (mypy in strict mode).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "modern-di"
|
|
3
|
-
description = "
|
|
3
|
+
description = "Dependency Injection framework with IOC-container and scopes"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name = "Artur Shiriev", email = "me@shiriev.ru" },
|
|
6
6
|
]
|
|
@@ -22,8 +22,8 @@ packages = [
|
|
|
22
22
|
]
|
|
23
23
|
|
|
24
24
|
[project.urls]
|
|
25
|
-
repository = "https://github.com/modern-python/
|
|
26
|
-
docs = "https://
|
|
25
|
+
repository = "https://github.com/modern-python/modern-di"
|
|
26
|
+
docs = "https://modern-di.readthedocs.io"
|
|
27
27
|
|
|
28
28
|
[dependency-groups]
|
|
29
29
|
dev = [
|
|
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
|