From 89a8bb1d1fec4b64b437016bd4dff2e4e4703b61 Mon Sep 17 00:00:00 2001 From: Lafrite Date: Thu, 14 May 2015 14:00:33 +0200 Subject: [PATCH] Ready to tag? --- MANIFEST | 5 +++++ setup.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/MANIFEST b/MANIFEST index c5c233b..913b6a7 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,12 +1,15 @@ # file GENERATED by distutils, do NOT edit setup.py pymath/__init__.py +pymath/abstract_polynom.py pymath/arithmetic.py +pymath/explicable.py pymath/expression.py pymath/fraction.py pymath/generic.py pymath/operator.py pymath/polynom.py +pymath/polynomDeg2.py pymath/random_expression.py pymath/render.py pymath/str2tokens.py @@ -14,7 +17,9 @@ test/test_arithmetic.py test/test_expression.py test/test_fraction.py test/test_generic.py +test/test_operator.py test/test_polynom.py +test/test_polynomDeg2.py test/test_random_expression.py test/test_render.py test/test_str2tokens.py diff --git a/setup.py b/setup.py index 3932d87..a0d4326 100644 --- a/setup.py +++ b/setup.py @@ -3,10 +3,10 @@ from distutils.core import setup setup(name='pyMath', - version='1.0', + version='1.1', description='Computing like a student', author='Benjamin Bertrand', author_email='lafrite@poneyworld.net', packages=['pymath'], - install_requiers=['pyparsing', 'sympy'], + install_requires=['pyparsing', 'sympy'], )