[Epydoc-commits] SF.net SVN: epydoc: [1693] trunk/epydoc/src/Makefile
Brought to you by:
edloper
From: <ed...@us...> - 2008-01-30 18:43:32
|
Revision: 1693 http://epydoc.svn.sourceforge.net/epydoc/?rev=1693&view=rev Author: edloper Date: 2008-01-30 10:43:30 -0800 (Wed, 30 Jan 2008) Log Message: ----------- Added 'upload' target (to update pypi index) Modified Paths: -------------- trunk/epydoc/src/Makefile Modified: trunk/epydoc/src/Makefile =================================================================== --- trunk/epydoc/src/Makefile 2008-01-30 17:11:29 UTC (rev 1692) +++ trunk/epydoc/src/Makefile 2008-01-30 18:43:30 UTC (rev 1693) @@ -89,3 +89,14 @@ test -e doc || ln -s ../webpage doc test -e man || ln -s ../man man $(PYTHON) setup.py -q bdist --format=wininst + +upload: + test -e doc || ln -s ../webpage doc + test -e man || ln -s ../man man + $(PYTHON) setup.py register + $(PYTHON) setup.py -q sdist --format=gztar upload + $(PYTHON) setup.py -q sdist --format=zip upload + $(PYTHON) setup.py -q bdist --format=wininst upload + $(PYTHON) setup.py -q bdist --format=rpm upload + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |