diff options
| author | Florian Apolloner <florian@apolloner.eu> | 2013-04-03 12:42:33 +0200 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2013-05-01 13:46:06 +0200 |
| commit | a5becad9094e5c5403b692b9a7b3a6ffaabf64a3 (patch) | |
| tree | 940aa879230b1dbd598a2c1259c0b7362f7c6575 /extras | |
| parent | ce45240df4e2b424ff4852b1cc71d01a031457c9 (diff) | |
Fixed #19252 -- Added support for wheel packages.
Signed-off-by: Jannis Leidel <jannis@leidel.info>
Diffstat (limited to 'extras')
| -rw-r--r-- | extras/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/extras/Makefile b/extras/Makefile new file mode 100644 index 0000000000..ff14f404e2 --- /dev/null +++ b/extras/Makefile @@ -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 |
