From 437c40a36975b0f43687a2576f9f9d765862d1b6 Mon Sep 17 00:00:00 2001 From: Luis Perez Date: Fri, 14 Aug 2020 19:03:31 -0700 Subject: [PATCH] Added nbviewer, binder, an environment file, and updated version on setup.cfg Set up links and badges for nbviever and binder. Updated the PyPi badge for a more friendly color (green, to show things are cool), and added an environment file. --- HISTORY.rst | 7 +++++++ README.md | 7 ++++--- environment.yml | 10 ++++++++++ setup.cfg | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 environment.yml diff --git a/HISTORY.rst b/HISTORY.rst index 2f3a0f0..1731ff6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,13 @@ History ======= 0.1.0 (2018-08-21) + ------------------ * First release on PyPI. + +------------------ + +0.2.0 (2020-08-14) + +------------------ \ No newline at end of file diff --git a/README.md b/README.md index 9d9df26..c92e5cd 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,11 @@ # gpvolve -*A python package for extracting tevolutionary trajectories from genotype-phenotype-maps* - -[![](https://img.shields.io/pypi/v/gpvolve.svg)](https://pypi.python.org/pypi/gpvolve) +[![PyPI version](https://badge.fury.io/py/gpvolve.svg)](https://badge.fury.io/py/gpvolve) [![](https://readthedocs.org/projects/gpvolve/badge/?version=latest)](https://gpvolve.readthedocs.io/en/latest/?badge=latest) +[![nbviewer](https://raw.githubusercontent.com/jupyter/design/master/logos/Badges/nbviewer_badge.svg)](https://nbviewer.jupyter.org/github/harmslab/gpvolve/blob/master/examples/Introduction%20to%20gpvolve.ipynb) +[![Binder](https://mybinder.org/badge_logo.svg)]([![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/harmslab/gpvolve/master?filepath=examples%2FIntroduction%20to%20gpvolve.ipynb)) +**A python package for extracting evolutionary trajectories from genotype-phenotype-maps** A Python API for the simulation and analysis of evolution in genotype-phenotype space. You can use this library to: diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..dfbeb4d --- /dev/null +++ b/environment.yml @@ -0,0 +1,10 @@ +name: gpvolve-kernel +dependencies: +- python==3.6 +- anaconda +- pip +- pip: + - matplotlib + - gpmap + - gpgraph + - gpvolve \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 995eb78..f382818 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = True