-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add local development and release instructions
- Loading branch information
1 parent
c074b95
commit e2e9f1b
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Contributing | ||
|
||
## Install | ||
|
||
To make changes to this project, first clone this repository: | ||
|
||
```sh | ||
git clone [email protected]:torchbox/buckup.git | ||
cd buckup | ||
``` | ||
|
||
With your preferred virtualenv activated, install testing dependencies: | ||
|
||
```sh | ||
pip install -e . | ||
``` | ||
|
||
## Releases | ||
|
||
First make sure to update the version number in `setup.cfg` and the CHANGELOG. Then, | ||
|
||
```sh | ||
pip install wheel twine | ||
rm -rf dist/* | ||
python setup.py sdist bdist_wheel | ||
twine upload dist/* | ||
``` |