From ccacde9ab44a61507f3be4b5ab499bc72cf70e92 Mon Sep 17 00:00:00 2001 From: Alexander Sikorski Date: Tue, 11 May 2021 15:41:13 +0200 Subject: [PATCH] fix installation instructions, homepage --- README.md | 5 ++--- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 63963ea..56b03f6 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,8 @@ This Python library implements a suite of tools used and/or developed in the [Co ## Installation -1. Clone the repository with `git clone https://git.zib.de/cmd/cmdtools.git` -2. Install into your python library with `pip install -e cmdtools` - (If you want to use the SLEPc library for sparse Schur decompositions install cmdtools with the extra slepc, i.e. `pip install -e "cmdtools[slepc]"`) +Install with `pip install cmdtools` + (If you want to use the SLEPc library for sparse Schur decompositions install cmdtools with the extra slepc, i.e. `pip install "cmdtools[slepc]"`) ## Contents * `pcca`: An implementation of (generalized) PCCA⁺ using the Schur decomposition diff --git a/setup.py b/setup.py index ed6ca39..c3af88e 100644 --- a/setup.py +++ b/setup.py @@ -6,13 +6,13 @@ setuptools.setup( name="cmdtools", - version="1.0.0", + version="1.0.1", author="Alexander Sikorski", author_email="sikorski@zib.de", description="A collection of tools relating to transfer operators", long_description=long_description, long_description_content_type="text/markdown", - url="https://git.zib.de/cmd/cmdtools", + url="https://github.com/zib-cmd/cmdtools", packages=setuptools.find_packages('src'), package_dir={'': 'src'}, classifiers=[