This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added notes for building and releasing
- Loading branch information
1 parent
f640199
commit 14e083c
Showing
1 changed file
with
29 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,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 |