Removed worksheet generation from the scope of this package

This commit is contained in:
lukew3
2021-02-21 13:14:13 -05:00
parent 0df6f15899
commit e92b44c7d8
4 changed files with 13 additions and 41 deletions

View File

@@ -1,12 +1,12 @@
from setuptools import setup, find_packages
setup(name='mathgenerator',
version='1.1.12',
version='1.1.13',
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', 'worksheetgen'],
install_requires=['sympy', 'numpy', 'scipy'],
entry_points={})