forked from ahmedfgad/GeneticAlgorithmPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 730 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pygad",
version="2.14.3",
author="Ahmed Fawzy Gad",
install_requires=["numpy", "matplotlib",],
author_email="ahmed.f.gad@gmail.com",
description="PyGAD: A Python 3 Library for Building the Genetic Algorithm and Training Machine Learning Algoithms (Keras & PyTorch).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ahmedfgad/GeneticAlgorithmPython",
license="BSD-3-Clause",
classifiers=[
"License :: OSI Approved :: BSD License"
],
packages=setuptools.find_packages())