Addition, subtraction and initial setup

This commit is contained in:
lukew3
2020-10-05 10:48:16 -04:00
parent e48e8d0e9f
commit ee819bc133
6 changed files with 114 additions and 0 deletions

20
setup.py Normal file
View File

@@ -0,0 +1,20 @@
from setuptools import setup, find_packages
setup(
name='mathGenerator',
version='1.0.0',
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={
'console_scripts': [
'mathGenerator=mathGenerator.mainGen:main'
],
},
)