Create virtual environment

conda create -n <environment name> python=3.7 -y

Activate enn

conda activate <environment name>

Create a requirements.txt file

Install the requirements

pip install -r requirements.txt

download data from https://drive.google.com/drive/folders/1xw0XX-WK74uxtFFLySbtnX-ODdmdK5Ec

git init

dvc init

dvc add data_given/winequality.csv

git add .

git commit -m "first commit"

One line update for readme

git add. && git commit -m "update readme.md"
git remote add origin <url>
git branch -M main
git push origin main

tox command-

tox

for rebuilding-

tox -r

pytest command-

pytest -v

setup commands-

pip install -e .

building your own package commands-

python setup.py sdist bdist_wheel