Skip to content

Commit

Permalink
fix installation instructions, homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
axsk committed May 11, 2021
1 parent 62af605 commit ccacde9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

setuptools.setup(
name="cmdtools",
version="1.0.0",
version="1.0.1",
author="Alexander Sikorski",
author_email="[email protected]",
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=[
Expand Down

0 comments on commit ccacde9

Please sign in to comment.