From bcaf65f9ee4ceea950d099459b63bd4704b71aea Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Wed, 12 Sep 2018 13:39:09 -0500 Subject: [PATCH] Added simplejson to install_requires list. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2809e04..cb15a4b 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,6 @@ setup( name='Geoffrey', version=__import__('geoffrey').__version__, packages=['geoffrey', 'geoffrey.cogs'], - install_requires=['discord.py', 'SQLAlchemy', 'pymysql', 'requests'], + install_requires=['discord.py', 'SQLAlchemy', 'pymysql', 'requests', 'simplejson'], long_description=open('README.txt').read(), )