Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Currently available mechanisms:

## Installation

`cvsim` can be installed from GitHub:
`cvsim` can be installed from PyPI using pip:

```bash
git clone git@github.com:ericfell/CVsim.git
pip install cvsim
```

See [Getting started with `cvsim.py`](https://cvsim.readthedocs.io/en/latest/getting-started.html) for instructions on simulating CVs.
Expand Down
6 changes: 5 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ or contribute code improvements and
Installation
------------

:code:`cvsim.py` can be installed ....
:code:`cvsim.py` can be installed from PyPI with pip:

.. code-block:: bash

pip install cvsim


Dependencies
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ requires-python = ">=3.10"
dependencies = ["scipy"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["electrochemistry", "cyclic voltammetry"]
license = "MIT"
license-files = [
"LICENSE",
]

[project.urls]
Homepage = "https://github.com/ericfell/CVsim"
Expand Down