Update setup.py

This commit is contained in:
Daniel Wilczak
2021-02-06 01:30:19 -05:00
committed by GitHub
parent b326a1a4aa
commit 33576fa8f4

View File

@ -1,18 +1,14 @@
from setuptools import setup, find_packages import setuptools
with open("README.md", "r") as fh: with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read() long_description = fh.read()
setup( setuptools.setup(
name='EasyGA', name='EasyGA',
version='1.2.0', version='1.5.1',
description='EasyGA is a python package designed to provide an easy-to-use Genetic Algorithm. The package is designed to work right out of the box, while also allowing the user to customize features as they see fit.', description='EasyGA is a python package designed to provide an easy-to-use Genetic Algorithm. The package is designed to work right out of the box, while also allowing the user to customize features as they see fit.',
py_modules=["EasyGA","attributes","test_EasyGA","decorators"], packages=setuptools.find_packages(),
packages=find_packages(where='EasyGA'),
package_dir={
'': 'EasyGA',
},
python_requires='>=3.6', python_requires='>=3.6',
url="https://github.com/danielwilczak101/EasyGA", url="https://github.com/danielwilczak101/EasyGA",
author="Daniel Wilczak, Jack RyanNguyen, Ryley Griffith, Jared Curtis, Matthew Chase Oxamendi ", author="Daniel Wilczak, Jack RyanNguyen, Ryley Griffith, Jared Curtis, Matthew Chase Oxamendi ",
@ -20,9 +16,7 @@ setup(
long_description = long_description, long_description = long_description,
long_description_content_type = "text/markdown", long_description_content_type = "text/markdown",
classifier=[ classifier=[
"Programming Language :: Python :: 3.0", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent", "Operating System :: OS Independent",
], ],