Stole the Makefile for building packages from master.

This commit is contained in:
Jacob Kaplan-Moss 2013-08-13 11:24:46 -05:00
parent e61e20e497
commit 506913cdd8

9
extras/Makefile Normal file
View File

@ -0,0 +1,9 @@
all: sdist bdist_wheel
sdist:
python setup.py sdist
bdist_wheel:
python -c "import setuptools;__file__='setup.py';exec(compile(open(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec'))" bdist_wheel
.PHONY : sdist bdist_wheel