Metadata-Version: 2.1
Name: sharrow
Version: 2.8.2
Summary: numba for ActivitySim-style spec files
Project-URL: Documentation, https://activitysim.github.io/sharrow/
Project-URL: Repository, https://github.com/activitysim/sharrow
Keywords: activitysim,discrete choice
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy >=1.19
Requires-Dist: pandas >=1.2
Requires-Dist: pyarrow
Requires-Dist: xarray
Requires-Dist: numba >=0.51.2
Requires-Dist: numexpr
Requires-Dist: filelock
Requires-Dist: dask
Requires-Dist: networkx

# sharrow
numba for ActivitySim-style spec files

## Building a Wheel

To build a wheel for sharrow, you need to have `build` installed. You can
install it with `python -m pip install build`.

Then run the builder:

```shell
python -m build .
```


## Building the documentation

Building the documentation for sharrow requires JupyterBook.

```shell
jupyterbook build docs
```

## Developer Note

This repository's continuous integration testing will use `ruff` to check code
quality.  There is a pre-commit hook that will run `ruff` on all staged files
to ensure that they pass the quality checks.  To install and use this hook,
run the following commands:

```shell
python -m pip install pre-commit  # if needed
pre-commit install
```

Then, when you try to make a commit, your code will be checked locally to ensure
that your code passes the quality checks.  If you want to run the checks manually,
you can do so with the following command:

```shell
pre-commit run --all-files
```

If you don't use `pre-commit`, a service will run the checks for you when you
open a pull request, and make fixes to your code when possible.
