mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
Addition, subtraction and initial setup
This commit is contained in:
20
setup.py
Normal file
20
setup.py
Normal 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'
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user