summaryrefslogtreecommitdiffstats
path: root/uitest/packaging/Makefile
blob: af63c946e7637f48906710204832b1c74144da88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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/*