├── Dockerfile └── requirements.txt /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM python:3.7.1-slim 2 | 3 | RUN pip install --upgrade pip 4 | 5 | COPY ./requirements.txt . 6 | RUN pip install --no-cache-dir -r requirements.txt 7 | 8 | CMD [ "/bin/bash" ] 9 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # Common 2 | numpy 3 | pandas 4 | matplotlib 5 | seaborn 6 | statsmodels 7 | scikit-learn 8 | openpyxl 9 | xlrd 10 | # Testing 11 | pytest 12 | pytest-cov 13 | coverage 14 | # Static Analysis 15 | flake8 16 | black --------------------------------------------------------------------------------