diwire 0.0.0a1__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.
- diwire-0.0.0a1/PKG-INFO +20 -0
- diwire-0.0.0a1/pyproject.toml +29 -0
- diwire-0.0.0a1/setup.cfg +4 -0
- diwire-0.0.0a1/src/diwire/__init__.py +0 -0
- diwire-0.0.0a1/src/diwire.egg-info/PKG-INFO +20 -0
- diwire-0.0.0a1/src/diwire.egg-info/SOURCES.txt +6 -0
- diwire-0.0.0a1/src/diwire.egg-info/dependency_links.txt +1 -0
- diwire-0.0.0a1/src/diwire.egg-info/top_level.txt +1 -0
diwire-0.0.0a1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: diwire
|
|
3
|
+
Version: 0.0.0a1
|
|
4
|
+
Summary: A lightweight, type-safe dependency injection container with automatic wiring, scoped lifetimes, and zero dependencies
|
|
5
|
+
Author-email: Maksim Zayats <maksim@zayats.dev>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: dependency-injection,di,ioc,inversion-of-control,container,autowiring
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
17
|
+
Classifier: Typing :: Typed
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "diwire"
|
|
3
|
+
version = "0.0.0a1"
|
|
4
|
+
description = "A lightweight, type-safe dependency injection container with automatic wiring, scoped lifetimes, and zero dependencies"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
requires-python = ">=3.10"
|
|
8
|
+
authors = [{ name = "Maksim Zayats", email = "maksim@zayats.dev" }]
|
|
9
|
+
keywords = [
|
|
10
|
+
"dependency-injection",
|
|
11
|
+
"di",
|
|
12
|
+
"ioc",
|
|
13
|
+
"inversion-of-control",
|
|
14
|
+
"container",
|
|
15
|
+
"autowiring",
|
|
16
|
+
]
|
|
17
|
+
classifiers = [
|
|
18
|
+
"Development Status :: 3 - Alpha",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.10",
|
|
23
|
+
"Programming Language :: Python :: 3.11",
|
|
24
|
+
"Programming Language :: Python :: 3.12",
|
|
25
|
+
"Programming Language :: Python :: 3.13",
|
|
26
|
+
"Programming Language :: Python :: 3.14",
|
|
27
|
+
"Typing :: Typed",
|
|
28
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
29
|
+
]
|
diwire-0.0.0a1/setup.cfg
ADDED
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: diwire
|
|
3
|
+
Version: 0.0.0a1
|
|
4
|
+
Summary: A lightweight, type-safe dependency injection container with automatic wiring, scoped lifetimes, and zero dependencies
|
|
5
|
+
Author-email: Maksim Zayats <maksim@zayats.dev>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: dependency-injection,di,ioc,inversion-of-control,container,autowiring
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
17
|
+
Classifier: Typing :: Typed
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
diwire
|