python-injection 0.9.4__tar.gz → 0.9.4.post0__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 python-injection might be problematic. Click here for more details.

Files changed (21) hide show
  1. {python_injection-0.9.4 → python_injection-0.9.4.post0}/PKG-INFO +13 -2
  2. {python_injection-0.9.4 → python_injection-0.9.4.post0}/pyproject.toml +18 -4
  3. {python_injection-0.9.4 → python_injection-0.9.4.post0}/documentation/basic-usage.md +0 -0
  4. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/__init__.py +0 -0
  5. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/__init__.pyi +0 -0
  6. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/common/__init__.py +0 -0
  7. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/common/event.py +0 -0
  8. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/common/invertible.py +0 -0
  9. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/common/lazy.py +0 -0
  10. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/common/tools/__init__.py +0 -0
  11. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/common/tools/threading.py +0 -0
  12. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/common/tools/type.py +0 -0
  13. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/core/__init__.py +0 -0
  14. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/core/module.py +0 -0
  15. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/exceptions.py +0 -0
  16. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/integrations/__init__.py +0 -0
  17. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/integrations/blacksheep.py +0 -0
  18. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/py.typed +0 -0
  19. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/testing/__init__.py +0 -0
  20. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/testing/__init__.pyi +0 -0
  21. {python_injection-0.9.4 → python_injection-0.9.4.post0}/injection/utils.py +0 -0
@@ -1,15 +1,26 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-injection
3
- Version: 0.9.4
3
+ Version: 0.9.4.post0
4
4
  Summary: Fast and easy dependency injection framework.
5
5
  Home-page: https://github.com/100nm/python-injection
6
6
  License: MIT
7
- Keywords: dependencies,inject,injection
7
+ Keywords: dependencies,dependency,inject,injection
8
8
  Author: remimd
9
9
  Requires-Python: >=3.12,<4
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
10
12
  Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Natural Language :: English
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python
11
16
  Classifier: Programming Language :: Python :: 3
12
17
  Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3 :: Only
19
+ Classifier: Topic :: Software Development :: Libraries
20
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Classifier: Topic :: Software Development :: Testing
23
+ Classifier: Typing :: Typed
13
24
  Project-URL: Repository, https://github.com/100nm/python-injection
14
25
  Description-Content-Type: text/markdown
15
26
 
@@ -1,13 +1,27 @@
1
1
  [tool.poetry]
2
2
  name = "python-injection"
3
- version = "0.9.4"
3
+ version = "0.9.4.post0"
4
4
  description = "Fast and easy dependency injection framework."
5
- authors = ["remimd"]
6
- keywords = ["dependencies", "inject", "injection"]
7
5
  license = "MIT"
8
- packages = [{ include = "injection" }]
6
+ authors = ["remimd"]
9
7
  readme = "documentation/basic-usage.md"
10
8
  repository = "https://github.com/100nm/python-injection"
9
+ keywords = ["dependencies", "dependency", "inject", "injection"]
10
+ classifiers = [
11
+ "Development Status :: 4 - Beta",
12
+ "Topic :: Software Development :: Libraries",
13
+ "Topic :: Software Development :: Libraries :: Application Frameworks",
14
+ "Topic :: Software Development :: Libraries :: Python Modules",
15
+ "Topic :: Software Development :: Testing",
16
+ "Programming Language :: Python",
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3 :: Only",
19
+ "Operating System :: OS Independent",
20
+ "Intended Audience :: Developers",
21
+ "Natural Language :: English",
22
+ "Typing :: Typed",
23
+ ]
24
+ packages = [{ include = "injection" }]
11
25
 
12
26
  [tool.poetry.dependencies]
13
27
  python = ">=3.12, <4"