diff --git a/README.md b/README.md index e9d5ed3..f6cdc13 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ Module to send commands to an Arduino based on a time table. ### Regarding Pyinstaller As of September 2017 the Pyinstaller version on PyPi is not ready for -Python 3.6, the developementversion is needed: - -~~~ -pip install https://github.com/pyinstaller/pyinstaller/tarball/develop -~~~ +Python 3.6 and / or multiprocessing. I stopped trying to use Pyinstaller +for distribution. The experiment is still available in the `pyinstaller` +branch. diff --git a/pyinstaller_make.bat b/pyinstaller_make.bat deleted file mode 100644 index d5ac479..0000000 --- a/pyinstaller_make.bat +++ /dev/null @@ -1,10 +0,0 @@ -pyinstaller ^ - --noconfirm ^ - --additional-hooks-dir=. ^ - --hidden-import=packaging ^ - --hidden-import=packaging.version ^ - --hidden-import=packaging.specifiers ^ - --hidden-import=packaging.requirements ^ - --name MagneticTrap ^ - --icon Household-Mouse-Trap.ico ^ - run_magnetic_trap.py diff --git a/run_magnetic_trap.py b/run_magnetic_trap.py deleted file mode 100644 index c43d494..0000000 --- a/run_magnetic_trap.py +++ /dev/null @@ -1,9 +0,0 @@ -from arduino_timetable import run_application - -if __name__=='__main__': - arduino_commands = {'open': 'o', 'close': 'c'} - run_application( - arduino_commands, - "It's a trap!", - icon='Household-Mouse-Trap.ico' - )