From 715c3a265b50687f3892dce9ef4f55a5d9c2dd47 Mon Sep 17 00:00:00 2001 From: Lafrite Date: Thu, 23 Apr 2015 08:13:11 +0200 Subject: [PATCH] update setup.py and add install_requiers --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f084faf..3932d87 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,10 @@ from distutils.core import setup setup(name='pyMath', - version='0.2', + version='1.0', description='Computing like a student', author='Benjamin Bertrand', author_email='lafrite@poneyworld.net', packages=['pymath'], + install_requiers=['pyparsing', 'sympy'], )