├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml ├── taskiq_dependencies ├── __init__.py ├── ctx.py ├── dependency.py ├── graph.py ├── py.typed └── utils.py ├── tests ├── __init__.py ├── conftest.py ├── test_annotated.py ├── test_fastapi.py └── test_graph.py └── tox.ini /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/.python-version -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/pyproject.toml -------------------------------------------------------------------------------- /taskiq_dependencies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/taskiq_dependencies/__init__.py -------------------------------------------------------------------------------- /taskiq_dependencies/ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/taskiq_dependencies/ctx.py -------------------------------------------------------------------------------- /taskiq_dependencies/dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/taskiq_dependencies/dependency.py -------------------------------------------------------------------------------- /taskiq_dependencies/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/taskiq_dependencies/graph.py -------------------------------------------------------------------------------- /taskiq_dependencies/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taskiq_dependencies/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/taskiq_dependencies/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_annotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/tests/test_annotated.py -------------------------------------------------------------------------------- /tests/test_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/tests/test_fastapi.py -------------------------------------------------------------------------------- /tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/tests/test_graph.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskiq-python/taskiq-dependencies/HEAD/tox.ini --------------------------------------------------------------------------------