conda create -n env_name python==3.7
The Given File Can Be Used To Create The Project Structure
pip install -r requirements.txt
git init
dvc init
dvc add data_given\Database_Credit.csv
git add . && git commit -m "Frist Commit"
git remote add origin https://github.com/mayurborkar/Credit-Risk-MLOPS.git
git branch -M main && git push -u origin main
dvc repro
dvc metrics show
dvc metrics diff
Tox Can Be Used For Creating The Virtual Env. In that We Can Test Our Test Cases That Are We Mention in The test Folder.
tox
If You Had Done Some Changes In Requirements File. If You Want To Run Again Tox Command For That
tox -r
We Can Also Run Directly test Cases With The Help Of Below Command
pytest -v
To Create The Standard pypi package, there is command
python setup.py sdist bdist_wheel