From c7ed12287085bbe4d3a7c317c14bde614314a901 Mon Sep 17 00:00:00 2001 From: Adam Wallner Date: Sun, 18 Oct 2020 18:18:54 +0200 Subject: [PATCH] Add MANIFEST.in to fix dependencies in requirements.txt --- MANIFEST.in | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..f9bd145 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include requirements.txt diff --git a/setup.py b/setup.py index 5e7cf91..63513ef 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ # This call to setup() does all the work setup( name="tc420", - version="0.1.0", + version="0.1.1", description="TC420 LED Controller library and command line interface", long_description=README, long_description_content_type="text/markdown",