Skip to content

Commit

Permalink
fix: better build and simpler README (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii authored Sep 28, 2020
1 parent 4c61fa8 commit bc83816
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
24 changes: 10 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ Hist is a analyst friendly front-end for
[boost-histogram](https://github.com/scikit-hep/boost-histogram), designed for
Python 3.6+.

## Installation

You can install this library from [PyPI](https://pypi.org/project/hist/) with pip:

```bash
python3 -m pip install "hist[plot]"
```

If you do not need the plotting features, you can skip the `[plot]` extra:

## Features

Hist currently provides everything boost-histogram provides, and the following enhancements:
Expand Down Expand Up @@ -37,20 +47,6 @@ Hist currently provides everything boost-histogram provides, and the following e
- Notebook ready: Hist has gorgeous in-notebook representation.
- No dependencies required

## Installation

You can install this library from [PyPI](https://pypi.org/project/hist/) with pip:

```bash
python3 -m pip install "hist[plot]"
```

If you do not need the plotting features, you can skip the `[plot]` extra:

```bash
python3 -m pip install hist
```

## Usage

```python
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[build-system]
requires = ["wheel", "setuptools>=42", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
write_to = "src/hist/version.py"

0 comments on commit bc83816

Please sign in to comment.