diff options
-rw-r--r-- | pkg/requirements.pip | 2 | ||||
-rw-r--r-- | www/Makefile | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/pkg/requirements.pip b/pkg/requirements.pip index 640aa79f..302277a3 100644 --- a/pkg/requirements.pip +++ b/pkg/requirements.pip @@ -3,3 +3,5 @@ colorama zope.interface service-identity leap.common +leap.soledad.client +vext.pyqt5 diff --git a/www/Makefile b/www/Makefile new file mode 100644 index 00000000..1e21b9a8 --- /dev/null +++ b/www/Makefile @@ -0,0 +1,16 @@ +build: + npm install + npm run build:production + +clean: + rm -rf public + rm -rf node_modules + +pydist-wheel: + python setup.py bdist_wheel + +pydist-dev: + pip install -e . + +pydist-clean: + rm -rf build dist |