PyPi - MateuszMazurkiewicz/coding-and-learning GitHub Wiki
- setup.cfg
- README.md
- license.txt
cd binomial_package_files python setup.py sdist pip install twine
commands to upload to the pypi test repository
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
pip install --index-url https://test.pypi.org/simple/ dsnd-probability
command to upload to the pypi repository
twine upload dist/*
pip install dsnd-probability
python3 setup.py sdist bdist_wheel