Merge pull request #30 from lukew3/master

Updated list of generators, changed version to 1.1.0, removed console script entry point
This commit is contained in:
Luke Weiler
2020-10-14 19:45:56 -04:00
committed by GitHub
2 changed files with 12 additions and 14 deletions

View File

@@ -20,10 +20,12 @@ problem, solution = mathgen.addition()
## List of Generators ## List of Generators
| Id | Skill | Example problem | Example Solution | Function Name | Status | | Id | Skill | Example problem | Example Solution | Function Name | Status |
|------|----------------------------|-----------------|-------------------|--------------------|-------------| |------|----------------------------|-----------------|-------------------|--------------------------|-------------|
| 2 | Addition | 1+5= | 6 | addition | Complete | | 2 | Addition | 1+5= | 6 | addition | Complete |
| 3 | Subtraction | 9-4= | 5 | subtraction | Complete | | 3 | Subtraction | 9-4= | 5 | subtraction | Complete |
| 4 | Multiplication | 4*6= | 24 | multiplication | Complete | | 4 | Multiplication | 4*6= | 24 | multiplication | Complete |
| 5 | Division | 4/2= | 2 | division | Complete | | 5 | Division | 4/2= | 2 | division | Complete |
| 6 | Binary Complement 1s | 1010= | 0101 | binaryComplement1s | Complete | | 6 | Binary Complement 1s | 1010= | 0101 | binaryComplement1s | Complete |
| 7 | Modulo Division | 10%3= | 1 | moduloDivision | 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 |

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='mathgenerator', name='mathgenerator',
version='1.0.2', version='1.1.0',
description='An open source solution for generating math problems', description='An open source solution for generating math problems',
url='https://github.com/todarith/mathgenerator', url='https://github.com/todarith/mathgenerator',
author='Luke Weiler', author='Luke Weiler',
@@ -10,11 +10,7 @@ setup(
license='MIT', license='MIT',
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
], ],
entry_points={ entry_points={
'console_scripts': [ }
'mathgenerator=mathgenerator.generator:main'
],
},
) )