From e2abefeeb5312eff6f271ee9258e38926b01847a Mon Sep 17 00:00:00 2001 From: Jonny Binns Date: Thu, 10 Dec 2020 15:04:15 +0000 Subject: [PATCH] fixed missing comma in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b88ed5d..2e815ee 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,6 @@ url='https://github.com/Open-Argumentation/ArgDB', author_email='mail@simonwells.org', version='0.1', - packages=find_packages(exclude=('deploy', 'etc', 'examples')) + packages=find_packages(exclude=('deploy', 'etc', 'examples')), install_requires=['tinydb'] )