This is a Python template for Data Science projects with CI setup using GitHub Actions. It also provides a .devcontainer setup. It has all the standard libraries for a Data Science project.
.
├── Dockerfile
├── LICENSE
├── Makefile
├── README.md
├── repeat.sh
├── requirements.txt
├── setup.sh
├── src
│ ├── lib
│ │ ├── func_utils.py
│ │ └── __init__.py
│ └── main.py
└── tests
├── __init__.py
└── test_lib.py