Let's also build .whl now.

This commit is contained in:
Ilya Otyutskiy
2015-12-13 18:53:42 +03:00
parent bfecc9a276
commit ea5b0cb79c
2 changed files with 15 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
all: clean sdist wheel
clean:
rm -rf dist daemonize.egg-info
sdist:
python setup.py sdist
wheel:
python setup.py bdist_wheel
upload:
python setup.py upload

2
setup.cfg Normal file
View File

@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1