# {project_name}

This project was bootstrapped using **projinit**.

---

## ⚙️ Environment Setup

Create a new conda environment:

```bash
conda create -n {env_name} python={python_version} -y
```

Activate the environment:

``` bash
conda activate {env_name}
```
📦 Install Dependencies
```bash

pip install -r requirements.txt
```
▶️ Run the Project
```bash

{run_command}
```
🧪 Run Tests (optional)
```bash

pytest
```