diff options
author | Kali Kaneko <kali@leap.se> | 2017-06-06 18:16:07 +0200 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-06-06 18:16:07 +0200 |
commit | 458ed1d8418c13c79aee88b3b521031811bfed9a (patch) | |
tree | 6f703c758e07c2e265a58c4e2c5fd10179a75700 /Makefile | |
parent | 928f081b8bf435e657a4707fd6ec94f23135eebd (diff) |
[pkg] add target to upload packages to pypi
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..9f444567 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +upload_packages: + cd common && python setup.py sdist bdist_wheel --universal upload --sign -i $(MAINTAINER) -r pypi + cd client && python setup.py sdist bdist_wheel --universal upload --sign -i $(MAINTAINER) -r pypi + cd server && python setup.py sdist bdist_wheel --universal upload --sign -i $(MAINTAINER) -r pypi |