mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
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:
18
README.md
18
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 |
|
||||
|
||||
8
setup.py
8
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'
|
||||
],
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user