From 942ac349cc134edf48e004986a094940a5ebd43e Mon Sep 17 00:00:00 2001 From: Andrew McGrath Date: Thu, 30 Apr 2020 10:16:59 -0400 Subject: [PATCH] This commit fixes an issue with the zeroae-cli not being a declared dependency yet referenced in the setup.py as an entrypoint --- environment.yml | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 969b93b..c993825 100644 --- a/environment.yml +++ b/environment.yml @@ -24,6 +24,7 @@ dependencies: - octokitpy >=0.13.0,<0.14 - pypubsub >=4.0.3,<5 - python-dateutil + - zeroae-cli # Test Requirements (setup.py:test_requirements) - pytest >=3 diff --git a/setup.py b/setup.py index 78edc3c..26b9651 100755 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ "octokitpy>=0.13.0,<0.14", "PyPubSub>=4.0.3,<5", "python-dateutil", + "zeroae-cli", # fmt: on ] @@ -67,7 +68,7 @@ # fmt: off entry_points={ "console_scripts": [ - "smee=zeroae.smee.cli:smee" + "smee=zeroae.smee.cli:smee", ], "zeroae.cli": [ "goblet=zeroae.goblet.cli:goblet",