diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3d23618 --- /dev/null +++ b/Makefile @@ -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 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..2a9acf1 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal = 1