Metadata-Version: 2.1
Name: datascience_cookiecutter
Version: 0.2.0
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Environment :: Console
Classifier: Typing :: Typed
Requires-Python: >=3.7
Requires-Dist: pydantic>=2.0
Requires-Dist: loguru>=0.7.0
Requires-Dist: click>=8.1.3
Requires-Dist: pytest>=7.4.0; extra == "lint"
Requires-Dist: ruff>=0.0.275; extra == "lint"
Requires-Dist: black>=23.3.0; extra == "lint"
Requires-Dist: isort>=5.11.5; extra == "lint"
Requires-Dist: mypy>=1.4.1; extra == "lint"
Provides-Extra: lint
Description-Content-Type: text/markdown


[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
<!-- [![PyPi version](https://badgen.net/pypi/v/mltrainer/)](https://pypi.org/project/mltrainer/) -->
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

```
.
├── Makefile
├── README.md
├── data
│   ├── final
│   ├── processed
│   ├── raw
│   └── sim
├── dev
|    ├── notebooks
│    └── scripts
├── docs
├── pyproject.toml
├── references
├── reports
│   ├── img
│   └── report.md
├── test
│   ├── __init__.py
│   └── main.py
└── tests
```