Metadata-Version: 2.1
Name: django_di
Version: 0.0.3
Summary: Django dependency injection inspired by ASP.NET
Author-email: Joseph Riddle <joeriddles10@gmail.com>
Project-URL: Homepage, https://github.com/joeriddles/django-di
Project-URL: Bug Tracker, https://github.com/joeriddles/django-di/issues
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# Django DI

<p style="align: center">
    <a href="https://pypi.org/project/django-di" target="_blank">
        <img src="https://img.shields.io/pypi/v/django-di?label=PyPI" alt="Package version">
    </a>
</p

Django dependency injection inspired by [ASP.NET](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection)

---

### Build

Note: these comands assume a valid [`~/.pypirc`](https://packaging.python.org/en/latest/specifications/pypirc/) file is configured.

See the [official packaging docs](https://packaging.python.org/en/latest/tutorials/packaging-projects/) for more info.

```shell
python3 -m pip install --upgrade build twine
python3 -m build
```

Upload to [test.pypi.org](https://test.pypi.org)

```shell
python3 -m twine upload --repository testpypi dist/*
```

Upload to [PyPI](https://pypi.org)

```shell
python3 -m twine upload dist/*
```

