First Push

Setup Push
This commit is contained in:
danielwilczak101
2020-09-17 12:28:32 -04:00
commit d7fc75ba3d
16 changed files with 133 additions and 0 deletions

31
setup.py Normal file
View File

@ -0,0 +1,31 @@
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='EasyGA',
version='0.0.1',
description='Say hello!',
py_modules=["helloworld"],
package_dir={'':'src'},
url="https://github.com/danielwilczak/EasyGA",
author="Daniel Wilczak",
author_email="danielwilczak101@gmail.com",
long_description = long_description,
long_description_content_type = "text/markdown",
classifier=[
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
],
install_requires = ["blessings ~= 1.7",
],
extra_require = {
"dev": [
"pytest>=3.7",
],
},
)