Files
mathgenerator/setup.py
2020-12-18 11:26:09 -05:00

13 lines
438 B
Python

from setuptools import setup, find_packages
setup(name='mathgenerator',
version='1.1.8',
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'],
entry_points={})