Skip to content

Commit

Permalink
Update name to carabiner-tools
Browse files Browse the repository at this point in the history
  • Loading branch information
eachanjohnson committed Feb 22, 2024
1 parent baecb93 commit e19ad5b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ Useful python utilities.
Install the pre-compiled version from GitHub:

```bash
$ pip install carabiner
$ pip install carabiner-tools
```

If you want to use the `tensorflow`, `pandas`, or `matplotlib` utilities, these must be installed separately
or together:

```bash
$ pip install carabiner[deep]
$ pip install carabiner-tools[deep]
# or
$ pip install carabiner[pd]
$ pip install carabiner-tools[pd]
# or
$ pip install carabiner[mpl]
$ pip install carabiner-tools[mpl]
# or
$ pip install carabiner[all]
$ pip install carabiner-tools[all]
```

### From source
Expand Down
10 changes: 5 additions & 5 deletions docs/source/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
Install the pre-compiled version from GitHub:

```bash
$ pip install carabiner
$ pip install carabiner-tools
```

If you want to use the `tensorflow`, `pandas`, or `matplotlib` utilities, these must be installed separately
or together:

```bash
$ pip install carabiner[deep]
$ pip install carabiner-tools[deep]
# or
$ pip install carabiner[pd]
$ pip install carabiner-tools[pd]
# or
$ pip install carabiner[mpl]
$ pip install carabiner-tools[mpl]
# or
$ pip install carabiner[all]
$ pip install carabiner-tools[all]
```

## From source
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
name = "carabiner"
name = "carabiner-tools"
version = "0.0.1"
authors = [
{ name="Eachan Johnson", email="eachan.johnson@crick.ac.uk" },
Expand Down Expand Up @@ -36,15 +36,15 @@ dependencies = [
deep = ["tensorflow"]
mpl = ["matplotlib"]
pd = ["pandas"]
all = ["carabiner[deep,mpl,pd]"]
all = ["carabiner-tools[deep,mpl,pd]"]


[project.urls]
"Homepage" = "https://github.com/scbirlab/carabiner"
"Bug Tracker" = "https://github.com/scbirlab/carabiner/issues"

[project.scripts]
cbnr = "carabiner.cli:main"
carabiner = "carabiner.cli:main"

[tool.setuptools]
# If there are data files included in your packages that need to be
Expand Down

0 comments on commit e19ad5b

Please sign in to comment.