To Develop Locally:
- Run
pip install -e .
To Deploy to Test Server:
-
Run
python setup.py sdist bdist_wheel
-
Upload using twine -
twine upload -r test dist/ml_insights-0.0.<version>.*
-
Install from Test PyPi -
pip install -i https://testpypi.python.org/pypi ml_insights --upgrade
To Deploy to PyPi Server:
-
Run
python setup.py sdist bdist_wheel
-
Upload using twine -
twine upload dist/ml_insights-0.0.<version>.*
-
Install from Test PyPi -
pip install ml_insights --upgrade
**Note: When uploading to TestPyPi or PyPi, we cannot update the versions. Version numbers need to be updated in setup.py and ml_insights/init.py
To Upgrade Documentation: