From 4820bbfc769e27f3ce608a9e3454e209c2adacf9 Mon Sep 17 00:00:00 2001 From: Nicolas Duhamel Date: Thu, 25 Feb 2021 22:14:53 +0100 Subject: [PATCH] Add pex build --- .gitignore | 1 + Makefile | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 Makefile diff --git a/.gitignore b/.gitignore index c10d448..fee1f23 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Source for the following rules: https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore # Byte-compiled / optimized / DLL files __pycache__/ +build/ *.py[cod] *$py.class diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c513fcd --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +pex: + pex . -m yamaha2mqtt -o build/yamaha2mqtt.pex