From d3c6d5d988566e552dfe9192328cf0a2b16835b0 Mon Sep 17 00:00:00 2001 From: lukew3 Date: Tue, 20 Oct 2020 14:05:43 -0400 Subject: [PATCH] fix install requires --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 10f5f36..fbbebfd 100644 --- a/setup.py +++ b/setup.py @@ -9,8 +9,8 @@ setup(name='mathgenerator', license='MIT', packages=find_packages(), install_requires=[ - sympy, - numpy, - scipy + 'sympy', + 'numpy', + 'scipy' ], entry_points={})