From 13eda5201363589511c22c3e9500ba46e505f49c Mon Sep 17 00:00:00 2001 From: Mesalu Date: Sun, 18 Mar 2018 12:37:45 -0700 Subject: [PATCH] Add PyPubSub to relevant dependencies --- requirements.txt | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3fbc0a1c..b36f74ce 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,3 +10,4 @@ pytest pytest-xdist pytest-timeout numpy +PyPubSub \ No newline at end of file diff --git a/setup.py b/setup.py index 2599f9fa..c389d0a9 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ Topic :: Software Development :: User Interfaces """ DEPENDENCIES = [ 'six', - ] + 'PyPubSub'] isWindows = sys.platform.startswith('win') isDarwin = sys.platform == "darwin"