From d8e1f56219f0d4ada254af9a46b6ca6f24a371d7 Mon Sep 17 00:00:00 2001 From: Johan Berggren Date: Fri, 6 Dec 2019 15:45:28 +0100 Subject: [PATCH] Add source distribution for PyPi when building Add sdist when building. This makes it easier to build packages from PyPi for example Debian PPA pkgs etc. This will not affect anything else, just make the source distribution available in PyPi as a tar.gz archive. If this gets merged, please bump the version and push to PyPi as well. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6594f16762a..b5a6a04c05b 100644 --- a/Makefile +++ b/Makefile @@ -92,7 +92,7 @@ test-backend-es-qs: tests/test-backend-es-qs.py build: tools/sigmac tools/merge_sigma tools/sigma/*.py tools/setup.py tools/setup.cfg - cd tools && python3 setup.py bdist_wheel + cd tools && python3 setup.py bdist_wheel sdist upload-test: build twine upload --repository-url https://test.pypi.org/legacy/ tools/dist/*