From 3a546015ed0348ffe4463718e4b161b12fcaa843 Mon Sep 17 00:00:00 2001 From: Jimmy Charnley Kromann Date: Wed, 25 Jul 2018 11:09:49 +0200 Subject: [PATCH 1/5] redundant readme --- README.md | 30 ------------------------------ README.rst | 1 + 2 files changed, 1 insertion(+), 30 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index a4032b3b6..000000000 --- a/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# QML: A Python Toolkit for Quantum Machine Learning -[![Build Status](https://travis-ci.org/qmlcode/qml.svg?branch=master)](https://travis-ci.org/qmlcode/qml) [![doi](https://badge.fury.io/py/qml.svg)](https://badge.fury.io/py/qml) [![doi](https://zenodo.org/badge/89045103.svg)](https://zenodo.org/badge/latestdoi/89045103) - -QML is a Python2/3-compatible toolkit for representation learning of properties of molecules and solids. - -#### Current list of contributors: -* Anders S. Christensen (University of Basel) -* Lars A. Bratholm (University of Bristol) -* Silvia Amabilino (University of Bristol) -* Felix A. Faber (University of Basel) -* Bing Huang (University of Basel) -* O. Anatole von Lilienfeld (University of Basel) - -## 1) Citing QML: - -Until the preprint is available from arXiv, please cite this GitHub repository as: - - AS Christensen, LA Bratholm, S Amabilino, FA Faber, B Huang, GR Glowacki, OA von Lilienfeld (2018) "QML: A Python Toolkit for Quantum Machine Learning" https://github.com/qmlcode/qml - - -## 2) Get help: - -Documentation and installation instruction is found at: http://www.qmlcode.org/ - - -## 3) License: - -QML is freely available under the terms of the MIT license. - - diff --git a/README.rst b/README.rst index ac6afe395..1f1f03686 100644 --- a/README.rst +++ b/README.rst @@ -12,6 +12,7 @@ Current list of contributors: - Anders S. Christensen (University of Basel) - Lars A. Bratholm (University of Bristol) - Silvia Amabilino (University of Bristol) +- Jimmy C. Kromann (University of Basel) - Felix A. Faber (University of Basel) - Bing Huang (University of Basel) - David R. Glowacki (University of Bristol) From d0007586c5e33fcd95c66e75bda19187fcd8a70b Mon Sep 17 00:00:00 2001 From: Jimmy Charnley Kromann Date: Wed, 25 Jul 2018 11:10:21 +0200 Subject: [PATCH 2/5] easier to scan error message --- mkldiscover.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkldiscover.py b/mkldiscover.py index 6423618fe..cdba13328 100755 --- a/mkldiscover.py +++ b/mkldiscover.py @@ -81,6 +81,6 @@ def mkl_exists(verbose=False): mkl_present = mkl_exists(verbose=False) if mkl_present: - print("MKL could be found") + print("MKL found") else: print("MKL could NOT be found") From 194e22ed13563e95bb31c5fe3378e9a813e7e72d Mon Sep 17 00:00:00 2001 From: Jimmy Charnley Kromann Date: Wed, 25 Jul 2018 11:15:56 +0200 Subject: [PATCH 3/5] space update --- README.rst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 1f1f03686..41b6e0951 100644 --- a/README.rst +++ b/README.rst @@ -9,14 +9,14 @@ properties of molecules and solids. Current list of contributors: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -- Anders S. Christensen (University of Basel) -- Lars A. Bratholm (University of Bristol) -- Silvia Amabilino (University of Bristol) -- Jimmy C. Kromann (University of Basel) -- Felix A. Faber (University of Basel) -- Bing Huang (University of Basel) -- David R. Glowacki (University of Bristol) -- O. Anatole von Lilienfeld (University of Basel) +- Anders S. Christensen (University of Basel) +- Lars A. Bratholm (University of Bristol) +- Silvia Amabilino (University of Bristol) +- Jimmy C. Kromann (University of Basel) +- Felix A. Faber (University of Basel) +- Bing Huang (University of Basel) +- David R. Glowacki (University of Bristol) +- O. Anatole von Lilienfeld (University of Basel) 1) Citing QML: -------------- From e2710c5c835c9a468fcc9a0d1f0aeabb13a16f1a Mon Sep 17 00:00:00 2001 From: Jimmy Charnley Kromann Date: Wed, 25 Jul 2018 11:18:17 +0200 Subject: [PATCH 4/5] fix the o --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 41b6e0951..f3a235966 100644 --- a/README.rst +++ b/README.rst @@ -16,7 +16,7 @@ Current list of contributors: - Felix A. Faber (University of Basel) - Bing Huang (University of Basel) - David R. Glowacki (University of Bristol) -- O. Anatole von Lilienfeld (University of Basel) +- \O. Anatole von Lilienfeld (University of Basel) 1) Citing QML: -------------- From af53296ab5108cdd26ecd6ddef6726be37b132ac Mon Sep 17 00:00:00 2001 From: Jimmy Charnley Kromann Date: Wed, 25 Jul 2018 11:24:06 +0200 Subject: [PATCH 5/5] updated readme src --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 89d403204..d66de275a 100755 --- a/setup.py +++ b/setup.py @@ -134,7 +134,7 @@ def requirements(): # use README.md as long description def readme(): - with open('README.md') as f: + with open('README.rst') as f: return f.read() def setup_qml():