quadkit 0.0.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.
- quadkit-0.0.1/PKG-INFO +32 -0
- quadkit-0.0.1/README.md +5 -0
- quadkit-0.0.1/pyproject.toml +37 -0
- quadkit-0.0.1/src/quadkit/__init__.py +3 -0
quadkit-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: quadkit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Async-first DI/IoC framework for Python
|
|
5
|
+
Project-URL: Homepage, https://quadkit.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/dbtinoy-/quadkit
|
|
7
|
+
Project-URL: Documentation, https://quadkit.dev
|
|
8
|
+
Project-URL: Issues, https://github.com/dbtinoy-/quadkit/issues
|
|
9
|
+
Author-email: QuadKit Team <team@quadkit.dev>
|
|
10
|
+
Maintainer-email: QuadKit Team <team@quadkit.dev>
|
|
11
|
+
License: MIT
|
|
12
|
+
Keywords: async,dependency-injection,framework,ioc,provider-pattern
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Framework :: AsyncIO
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
23
|
+
Classifier: Typing :: Typed
|
|
24
|
+
Requires-Python: >=3.11
|
|
25
|
+
Requires-Dist: quadkit-contracts>=0.0.1
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
|
|
28
|
+
# quadkit
|
|
29
|
+
|
|
30
|
+
Async-first DI/IoC framework for Python.
|
|
31
|
+
|
|
32
|
+
This is a placeholder package for name reservation on PyPI.
|
quadkit-0.0.1/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "quadkit"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Async-first DI/IoC framework for Python"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
keywords = ["async", "framework", "dependency-injection", "ioc", "provider-pattern"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 3 - Alpha",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Programming Language :: Python :: 3.12",
|
|
21
|
+
"Programming Language :: Python :: 3.13",
|
|
22
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
23
|
+
"Framework :: AsyncIO",
|
|
24
|
+
"Typing :: Typed",
|
|
25
|
+
]
|
|
26
|
+
authors = [{name = "QuadKit Team", email = "team@quadkit.dev"}]
|
|
27
|
+
maintainers = [{name = "QuadKit Team", email = "team@quadkit.dev"}]
|
|
28
|
+
dependencies = ["quadkit-contracts>=0.0.1"]
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
Homepage = "https://quadkit.dev"
|
|
32
|
+
Repository = "https://github.com/dbtinoy-/quadkit"
|
|
33
|
+
Documentation = "https://quadkit.dev"
|
|
34
|
+
Issues = "https://github.com/dbtinoy-/quadkit/issues"
|
|
35
|
+
|
|
36
|
+
[tool.hatch.build.targets.wheel]
|
|
37
|
+
packages = ["src/quadkit"]
|