Files
mathgenerator/setup.py
2020-10-17 19:16:29 -04:00

17 lines
397 B
Python

from setuptools import setup, find_packages
setup(
name='mathgenerator',
version='1.1.3',
description='An open source solution for generating math problems',
url='https://github.com/todarith/mathgenerator',
author='Luke Weiler',
author_email='lukew25073@gmail.com',
license='MIT',
packages=find_packages(),
install_requires=[
],
entry_points={
}
)