Metadata-Version: 2.1
Name: that-depends
Version: 0.0.2
Summary: Opinniated Dependency Injection framework
Home-page: https://github.com/modern-python/that-depends
Author: Artur Shiriev
Author-email: me@shiriev.ru
Requires-Python: >=3.12
Classifier: Framework :: Pytest
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

"That Depends"
==
This package is dependency injection framework for Python, mostly inspired by python-dependency-injector.

# Main decisions:
1. Every dependency resolving is async, so you should construct with `await` keyword:
```python
some_dependency = await DIContainer.some_dependency()
```
2. No containers initialization to avoid wiring

