Contributions are welcome!
pipenv --rm
pipenv sync
pipenv sync --dev
pipenv check
pipenv update
pipenv update --dev
vim requirements.txt
vim requirements_dev.txt
arpa/__init__.py
__date__
__version__
docs/conf.py
release
version
setup.py
version
AUTHORS.md
HISTORY.md
pipenv run yapf -e docs/conf.py -i -r .
pipenv run flake8 .
cd docs
pipenv run sphinx-apidoc -f -o . ../arpa
cd docs
pipenv run make html
cd docs
pipenv run sphinx-build -nWT -b html -d _build/doctrees . _build/html
git clean -dxn
git clean -dxf
pipenv run check-manifest -v
pipenv run pyroma .
pipenv run python setup.py test
pipenv run python setup.py check
pipenv run python setup.py sdist
pipenv run python setup.py bdist_wheel
pipenv run twine check dist/*
pipenv run twine upload dist/*