├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── README.md ├── bin └── .gitkeep ├── config └── .gitkeep ├── coverage.svg ├── makefile ├── notebooks └── .gitkeep ├── requirements.in ├── requirements_dev.in ├── src └── main.py └── tests └── test_main.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaislar/ds_template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaislar/ds_template/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaislar/ds_template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaislar/ds_template/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaislar/ds_template/HEAD/coverage.svg -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaislar/ds_template/HEAD/makefile -------------------------------------------------------------------------------- /notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- 1 | # required packages for the run 2 | -------------------------------------------------------------------------------- /requirements_dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaislar/ds_template/HEAD/requirements_dev.in -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaislar/ds_template/HEAD/src/main.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaislar/ds_template/HEAD/tests/test_main.py --------------------------------------------------------------------------------