diff --git a/Makefile b/Makefile index c816816..14b9fa1 100644 --- a/Makefile +++ b/Makefile @@ -28,5 +28,6 @@ build_wheel: release: build_wheel apk upload: + @echo Ready to publish release, hit enter to continue @echo Uploading to PyPi... twine upload dist/sbapp-* \ No newline at end of file diff --git a/setup.py b/setup.py index 16581ad..3615af5 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,6 @@ setuptools.setup( 'sideband=sbapp:main.run', ] }, - install_requires=['rns>=0.3.9', 'lxmf>=0.1.7', 'kivy==2.1.0'], + install_requires=['rns>=0.3.9', 'lxmf>=0.1.7', 'kivy==2.1.0', 'plyer'], python_requires='>=3.6', )