Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 397 Bytes

maintainers_guide.md

File metadata and controls

20 lines (16 loc) · 397 Bytes

Deployment

# https://packaging.python.org/guides/using-testpypi/
python -m venv env
source env/bin/activate
pip install --upgrade pip
pip install twine wheel
rm -rf dist/
python setup.py sdist bdist_wheel
twine check dist/*

# Testing
twine upload --repository testpypi dist/*
pip install --index-url https://test.pypi.org/simple/ slackeventsapi

# Deployment
twine upload dist/*