Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e2dec3d

Browse files
authored
Add files via upload
1 parent 884648c commit e2dec3d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

setup.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="pygad",
8+
version="2.14.3",
9+
author="Ahmed Fawzy Gad",
10+
install_requires=["numpy", "matplotlib",],
11+
author_email="[email protected]",
12+
description="PyGAD: A Python 3 Library for Building the Genetic Algorithm and Training Machine Learning Algoithms (Keras & PyTorch).",
13+
long_description=long_description,
14+
long_description_content_type="text/markdown",
15+
url="https://github.com/ahmedfgad/GeneticAlgorithmPython",
16+
packages=setuptools.find_packages())

0 commit comments

Comments
 (0)