create env
conda create -n wineq python=3.9 -y
activate env
conda activate wineq
create a requirement file
install the requirements
pip install -r requirements.txt
download 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 -
tox
for rebuilding
tox -r
pytest command -
pytest -v
setup commands - installing local packages
pip install -e .
to build your own package
python setup.py sdist bdist_wheel