Skip to content

Commit fad7435

Browse files
authored
Merge pull request #142 from Happy-Algorithms-League/setup/long_description
Change long description in setup.py
2 parents c743f20 + 84ffba8 commit fad7435

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

long_description.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
HAL-CGP
2+
=======
3+
[![Python3.6](https://img.shields.io/badge/python-3.6-red.svg)](https://www.python.org/downloads/release/python-369/)
4+
[![Python3.7](https://img.shields.io/badge/python-3.7-red.svg)](https://www.python.org/)
5+
[![Python3.8](https://img.shields.io/badge/python-3.8-red.svg)](https://www.python.org/)
6+
[![GPL license](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-3.0.html)
7+
[![Build Status](https://api.travis-ci.org/Happy-Algorithms-League/hal-cgp.svg?branch=master)](https://travis-ci.org/Happy-Algorithms-League/hal-cgp)
8+
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
9+
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
10+
[![Coverage Status](https://coveralls.io/repos/github/Happy-Algorithms-League/python-gp/badge.svg?branch=master)](https://coveralls.io/github/Happy-Algorithms-League/python-gp?branch=master)
11+
12+
Cartesian genetic programming (CGP) in pure Python.
13+
14+
This library implements Cartesian genetic programming (e.g, Miller and Thomson, 2000; Miller, 2011) for symbolic regression in pure Python, targeting applications with expensive fitness evaluations. It provides Python data structures to represent and evolve two-dimensional directed graphs (genotype) that are translated into computational graphs (phenotype) implementing mathematical expressions. The computational graphs can be compiled as a Python functions, SymPy expressions (Meurer et al., 2017) or PyTorch modules (Paszke et al., 2017). The library currently implements an evolutionary algorithm, specifically (mu + lambda) evolution strategies adapted from Deb et al. (2002), to evolve a population of symbolic expressions in order to optimize an objective function.

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ def read_extra_requirements():
3434
name="hal-cgp",
3535
version=read_version(),
3636
author="Jakob Jordan, Maximilian Schmidt",
37-
author_email="[email protected]",
3837
description=("Cartesian Genetic Programming in pure Python."),
3938
license="GPLv3",
4039
keywords="genetic programming",
@@ -43,7 +42,7 @@ def read_extra_requirements():
4342
install_requires=read_requirements(),
4443
extras_require=read_extra_requirements(),
4544
packages=["cgp", "cgp.ea", "cgp.local_search"],
46-
long_description=open("README.md").read(),
45+
long_description=open("long_description.md").read(),
4746
long_description_content_type="text/markdown",
4847
classifiers=[
4948
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)