├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs ├── index.md └── usage.md ├── kedro_light ├── __init__.py ├── kedro.py └── kedro_viz.py ├── mkdocs.yml └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/docs/usage.md -------------------------------------------------------------------------------- /kedro_light/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/kedro_light/__init__.py -------------------------------------------------------------------------------- /kedro_light/kedro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/kedro_light/kedro.py -------------------------------------------------------------------------------- /kedro_light/kedro_viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/kedro_light/kedro_viz.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellwise/kedro-light/HEAD/pyproject.toml --------------------------------------------------------------------------------