Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 459 Bytes

CONTRIBUTING.md

File metadata and controls

27 lines (19 loc) · 459 Bytes

Contributing

Install

To make changes to this project, first clone this repository:

git clone [email protected]:torchbox/buckup.git
cd buckup

With your preferred virtualenv activated, install testing dependencies:

pip install -e .

Releases

First make sure to update the version number in setup.cfg and the CHANGELOG. Then,

pip install wheel twine
rm -rf dist/*
python setup.py sdist bdist_wheel
twine upload dist/*