From fb0fbcb5889f70c4b9a587d8d2546e4ec4dbfab1 Mon Sep 17 00:00:00 2001 From: Jonathan Karr Date: Fri, 24 Jul 2020 22:27:32 -0400 Subject: [PATCH 1/2] cleaning up README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 18c8b70..8d219a7 100644 --- a/README.md +++ b/README.md @@ -109,10 +109,10 @@ This repository is organized as follows: 11. Once the CircleCI build succeeds, downstream dependencies will automatically be tested and built ## Contributing to *Datanator* -We welcome contributions to *Datanator* via Git pull requests. Please contact the developers to coordinate potential contributions, and please see above for information about how to submit pull requests. +We welcome contributions to *Datanator* via GitHub pull requests. Please contact the developers to coordinate potential contributions, and please see above for information about how to submit pull requests. ## License -This package is released under the [MIT license](LICENSE). The licenses of the third party dependencies are summarized in [LICENSE-THIRD-PARTY](LICENSE-THIRD-PARTY). +This package is released under the [MIT license](LICENSE). ## Development team This package was developed by the [Karr Lab](https://www.karrlab.org) at the Icahn School of Medicine at Mount Sinai in New York by the following individuals: From 37d125ba35107ca6cfc88c0565399986425ceb75 Mon Sep 17 00:00:00 2001 From: Jonathan Karr Date: Fri, 24 Jul 2020 22:41:20 -0400 Subject: [PATCH 2/2] adding python installation to README --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8d219a7..7e3ab41 100644 --- a/README.md +++ b/README.md @@ -41,14 +41,18 @@ We recommend using the [REST API](https://api.datanator.info) to programmaticall ### Developers #### Install *Datanator-query-python* -We presume Python 3.7 has already been installed. -1. Install `git` +1. Install Python >= 3.7 + ``` + apt-get install python3 + ``` + +2. Install `git` ``` apt-get install git ``` -2. Clone this repository +3. Clone this repository ``` git clone https://github.com/karrlab/datanator_query_python ```