-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
28 lines (25 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='EasyGA',
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.',
packages=setuptools.find_packages(),
python_requires='>=3.6',
url="https://github.com/danielwilczak101/EasyGA",
author="Daniel Wilczak, Jack RyanNguyen, Ryley Griffith, Jared Curtis, Matthew Chase Oxamendi ",
author_email="[email protected]",
long_description = long_description,
long_description_content_type = "text/markdown",
classifier=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
],
install_requires = ["matplotlib ~= 3.3.2",
"pyserial ~= 3.4",
"pytest>=3.7",
"tabulate >=0.8.7"
],
)