added makePdf function, documentation, new version

This commit is contained in:
lukew3
2020-11-20 14:05:48 -05:00
parent be2922a5b0
commit 27082cc299
4 changed files with 21 additions and 2 deletions

View File

@@ -1,12 +1,12 @@
from setuptools import setup, find_packages
setup(name='mathgenerator',
version='1.1.5',
version='1.1.6',
description='An open source solution for generating math problems',
url='https://github.com/lukew3/mathgenerator',
author='Luke Weiler',
author_email='lukew25073@gmail.com',
license='MIT',
packages=find_packages(),
install_requires=['sympy', 'numpy', 'scipy'],
install_requires=['sympy', 'numpy', 'scipy', 'worksheetgen'],
entry_points={})