Skip to content
This repository has been archived by the owner on Dec 28, 2024. It is now read-only.

Commit

Permalink
added notes for building and releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Feb 4, 2014
1 parent f640199 commit 14e083c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions BUILDING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
### Building locally

git checkout devel

# make changes

git commit

git push

git checkout master

make sdist

git checkout devel #make sure to go back to devel to make changes

### deploying to pypi

make sure `~/.pypirc` is setup correctly

[pypirc]
servers = pypi
[server-login]
username:<username>
password:<password>

then

python setup.py sdist upload

0 comments on commit 14e083c

Please sign in to comment.