From 503a92f136242848188d3db5bb14a07e53f04bdb Mon Sep 17 00:00:00 2001 From: Luke Weiler Date: Wed, 14 Oct 2020 14:28:01 -0400 Subject: [PATCH 1/3] Update List of Generators --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9c005dd..e958a5b 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,11 @@ problem, solution = mathgen.addition() ``` ## List of Generators -| Id | Skill | Example problem | Example Solution | Function Name | Status | -|------|----------------------------|-----------------|-------------------|----------------|-------------| -| 2 | Addition | 1+5= | 6 | addition | Complete | -| 3 | Subtraction | 9-4= | 5 | subtraction | Complete | -| 4 | Multiplication | 4*6= | 24 | | Not Started | -| 5 | Division | 4/2= | 2 | | Not Started | -| - | Factoring | x^2+x-6 | (x-2)(x+3) | | Not Started | -| - | Power Rule Differentiation | x^5 | 5x^4 | | Not Started | +| Id | Skill | Example problem | Example Solution | Function Name | Status | +|------|----------------------------|-----------------|-------------------|--------------------|-------------| +| 2 | Addition | 1+5= | 6 | addition | Complete | +| 3 | Subtraction | 9-4= | 5 | subtraction | Complete | +| 4 | Multiplication | 4*6= | 24 | multiplication | Complete | +| 5 | Division | 4/2= | 2 | division | Complete | +| 6 | Binary Complement 1s | 1010= | 0101 | binaryComplement1s | Complete | +| 7 | Modulo Division | 10%3= | 1 | moduloDivision | Complete | From 2b5a8e4c6f52a2821dd23cf059df83d7f593501c Mon Sep 17 00:00:00 2001 From: lukew3 Date: Wed, 14 Oct 2020 19:42:51 -0400 Subject: [PATCH 2/3] Updated list of generators --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e958a5b..d2043a6 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,13 @@ problem, solution = mathgen.addition() ``` ## List of Generators -| Id | Skill | Example problem | Example Solution | Function Name | Status | -|------|----------------------------|-----------------|-------------------|--------------------|-------------| -| 2 | Addition | 1+5= | 6 | addition | Complete | -| 3 | Subtraction | 9-4= | 5 | subtraction | Complete | -| 4 | Multiplication | 4*6= | 24 | multiplication | Complete | -| 5 | Division | 4/2= | 2 | division | Complete | -| 6 | Binary Complement 1s | 1010= | 0101 | binaryComplement1s | Complete | -| 7 | Modulo Division | 10%3= | 1 | moduloDivision | Complete | +| Id | Skill | Example problem | Example Solution | Function Name | Status | +|------|----------------------------|-----------------|-------------------|--------------------------|-------------| +| 2 | Addition | 1+5= | 6 | addition | Complete | +| 3 | Subtraction | 9-4= | 5 | subtraction | Complete | +| 4 | Multiplication | 4*6= | 24 | multiplication | Complete | +| 5 | Division | 4/2= | 2 | division | Complete | +| 6 | Binary Complement 1s | 1010= | 0101 | binaryComplement1s | Complete | +| 7 | Modulo Division | 10%3= | 1 | moduloDivision | Complete | +| 8 | Square Root | sqrt(a)= | b | squareRootFunction | Complete | +| 9 | Power Rule Differentiation | nx^m | (n*m)x^(m-1) | powerRuleDifferentiation | Complete | From c55298a91080b743026344bece6f9b691a22129d Mon Sep 17 00:00:00 2001 From: lukew3 Date: Wed, 14 Oct 2020 19:45:16 -0400 Subject: [PATCH 3/3] Changed version number and removed unecessary entry point --- setup.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 27cc2a5..e2e36d7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='mathgenerator', - version='1.0.2', + version='1.1.0', description='An open source solution for generating math problems', url='https://github.com/todarith/mathgenerator', author='Luke Weiler', @@ -10,11 +10,7 @@ setup( license='MIT', packages=find_packages(), install_requires=[ - ], entry_points={ - 'console_scripts': [ - 'mathgenerator=mathgenerator.generator:main' - ], - }, + } )