crete env
cada create -n wineq python=3.7
activate env
conda activate wineq
install requirements.txt
pip install -r requirements.txt
Download the data from Kaggle https://www.kaggle.com/uciml/red-wine-quality-cortez-et-al-2009
now push code to github
git init
git add .
git commit -m "inital commit"
git remote add origin <your git https address>
git branch -M main
git push origin master
tox command -
tox
rebuilding
tox -r
pytest
pytest -v
setup commands
pip install - e.
build your own package
touch setup.py
python snippet
from setuptools import setup,find_packages
setup(your package details)
after building in cli
python setup.py sdist bdist_wheel
the above will build tar.ghz file