[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/KelvinChung2000/GeneticAlgorithmPython/update_fstring/setup.py [Back]  [Original]

import setuptools  

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(  
    name="pygad",  
    version="3.0.1",  
    author="Ahmed Fawzy Gad",
    install_requires=["numpy", "matplotlib", "cloudpickle",],
    author_email="ahmed.f.gad@gmail.com",  
    description="PyGAD: A Python 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",
    packages=setuptools.find_packages())

Web Proxy Viewer  |  New URL  |  Original Page