├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── COPYING ├── README.md ├── aiomisc_dependency ├── __init__.py └── plugin.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py └── test_dependency.py /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiokitchen/aiomisc-dependency/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiokitchen/aiomisc-dependency/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiokitchen/aiomisc-dependency/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiokitchen/aiomisc-dependency/HEAD/README.md -------------------------------------------------------------------------------- /aiomisc_dependency/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiokitchen/aiomisc-dependency/HEAD/aiomisc_dependency/__init__.py -------------------------------------------------------------------------------- /aiomisc_dependency/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiokitchen/aiomisc-dependency/HEAD/aiomisc_dependency/plugin.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiokitchen/aiomisc-dependency/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiokitchen/aiomisc-dependency/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiokitchen/aiomisc-dependency/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiokitchen/aiomisc-dependency/HEAD/tests/test_dependency.py --------------------------------------------------------------------------------