Metadata-Version: 2.1
Name: coopgt
Version: 0.0.2
Summary: A library for the study of cooperative game theory.
Author: Vincent Knight
Author-email: knightva@cardiff.ac.uk
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: more-itertools >= 10.2.0
Requires-Dist: numpy >= 1.26.1
Requires-Dist: sphinx ; extra == "doc"
Requires-Dist: sphinx-rtd-theme ; extra == "doc"
Requires-Dist: sphinx-togglebutton ; extra == "doc"
Provides-Extra: doc

# CoopGT

A library for the study of cooperative game theory.

## Documentation

Full documentation is available here: http://coopgt.readthedocs.io/ it includes
a theory section.

## Installation

```bash
$ python -m pip install nashpy
```

## Development

Clone the repository and create a virtual environment:

```bash
$ git clone https://github.com/drvinceknight/coopgt.git
$ cd coopgt
$ python -m venv env

```

Activate the virtual environment and install [`tox`](https://tox.readthedocs.io/en/latest/):

```bash
$ source env/bin/activate
$ python -m pip install tox

```

Make modifications.

To run the tests:

```bash
$ python -m tox

```

## Code of conduct

In the interest of fostering an open and welcoming environment, all
contributors, maintainers and users are expected to abide by the Python code of
conduct: https://www.python.org/psf/codeofconduct/

