create env
conda create -n wineq python=3.9 -yactivate env
conda activate wineqcreate a requirement file
install the requirements
pip install -r requirements.txtdownload the data
https://drive.google.com/drive/folders/1xw0XX-WK74uxtFFLySbtnX-ODdmdK5Ec
initialize git and dvc
git init
dvc init
dvc add data_given/winequality.csv
git add .
git commit -m "initial commit"tox command -
toxfor rebuilding
tox -rpytest command -
pytest -vsetup commands - installing local packages
pip install -e . to build your own package
python setup.py sdist bdist_wheel