From 8af868e2879282e85e32cabe824bc0990985fc81 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Thu, 8 Jun 2017 00:28:35 +0200 Subject: prepare publishing the libreoffice-connection python code Change-Id: I730207465e185a0b942b5636cd7ba3bebe7856f5 --- uitest/packaging/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 uitest/packaging/Makefile (limited to 'uitest/packaging/Makefile') diff --git a/uitest/packaging/Makefile b/uitest/packaging/Makefile new file mode 100644 index 000000000000..af63c946e763 --- /dev/null +++ b/uitest/packaging/Makefile @@ -0,0 +1,16 @@ +all: + @echo "Packaging the libreoffice-connection code" + @mkdir -p libreoffice + @cp ../libreoffice/connection.py libreoffice/. + @touch libreoffice/__init__.py + @python3 setup.py sdist + +clean: + rm -r dist/ + rm -r libreoffice_connection.egg-info/ + rm -r libreoffice/ + rm -r build/ + +publish: + @echo "Uploading the release to pypi" + twine upload dist/* -- cgit