FogBugz » FogBugzPy A Python wrapper for the FogBugz API Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9.6 and master

add PYPI_README.TXT for instuctions on how to upload an updated package to PyPi

Changeset 512b6f62a823

Parent 27547ee70b6a

by Profile picture of User 476Ben McCormack <benm@fogcreek.com>

Changes to one file · Browse files at 512b6f62a823 Showing diff from parent 27547ee70b6a Diff from another changeset...

Change 1 of 1 Show Entire File PYPI_README.TXT Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
@@ -1,0 +1,33 @@
+The Python Package Index is a repository of software for the Python programming +language. FogBugzPy is published to http://pypi.python.org/pypi/fogbugz/ and +users who have pip installed can install FogBugz at the command line via: + + pip install fogbugz + +If you regularly make changes to FogBugzPy, you'll want to be set up at as +user on the package in PyPi. Talk to Ben McCormack, Ben Pollack, or David Hodgson +to be added as a user. + +Once you're added, do the following to get your changes published: + + 1. Bump the version number in setup.py. + 2. Commit the version bump and then tag the new changeset with the same + version number. For example: + + > hg commit -m "bump version" + > hg tag 0.9.4 + + 3. Push the changesets to: + https://developers.kilnhg.com/Code/FogBugz/Group/FogBugzPy + + 4. Run the following command. You should only need to do this once on your + machine: + + > python setup.py register + + 5. Run the following command to upload the updated package to PyPi: + + > python setup.py sdist upload + + 6. Go to http://pypi.python.org/pypi?%3Aaction=pkg_edit&name=fogbugz to + verify that the package has been uploaded correctly. \ No newline at end of file