├── .gitignore ├── AUTHORS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── dbt_docstring └── __init__.py ├── requirements_dev.txt ├── setup.cfg ├── setup.py └── tests └── install_test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/README.md -------------------------------------------------------------------------------- /dbt_docstring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/dbt_docstring/__init__.py -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/setup.py -------------------------------------------------------------------------------- /tests/install_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelendata/dbt_docstring/HEAD/tests/install_test.sh --------------------------------------------------------------------------------