FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
GeneticAlgorithmPython/setup.py at update_fstring · KelvinChung2000/GeneticAlgorithmPython · GitHub
KelvinChung2000
/
GeneticAlgorithmPython
Public
forked from
ahmedfgad/GeneticAlgorithmPython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
GeneticAlgorithmPython
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (14 loc) · 636 Bytes
Breadcrumbs
GeneticAlgorithmPython
/
setup.py
Copy path
File metadata and controls
16 lines (14 loc) · 636 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
())
Back
|
FazBrowse Home
|
New Git URL