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

Commit

Permalink
Bump version and add minimal makefile that builds eggs and tarballs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Sutherland committed Jun 13, 2006
1 parent b5af89b commit 07d4f83
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
PYVERS=2.4

all:
# nothing for now

clean: $(PYVERS:%=clean-python%)
rm -rf dist
rm -rf build
rm -rf src/*.egg-info

clean-python%:
python$* setup.py clean

.PHONY: dist
dist: clean $(PYVERS:%=build-python%-egg)
python setup.py sdist

build-python%-egg:
python$* setup.py bdist_egg
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="zc.i18n",
version="0.5",
version="0.5.1",
packages=find_packages('src', exclude=["*.tests", "*.ftests"]),

package_dir= {'':'src'},
Expand Down

0 comments on commit 07d4f83

Please sign in to comment.