Metadata-Version: 2.1
Name: pyshapley
Version: 0.1.0
Summary: Library for computing Shapley values of coalitional games
Home-page: https://github.com/JulianStier/pyshapley
License: MIT
Keywords: shapley value,coalitional games,game theory,shap
Author: Julian Stier
Author-email: julian.stier@uni-passau.de
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: deprecated (>=1.2.10,<2.0.0)
Requires-Dist: importlib-metadata (>=4.4,<5.0)
Requires-Dist: importlib-resources (>=5.0,<6.0)
Requires-Dist: numpy (>=1.22,<2.0)
Requires-Dist: semantic_version (>=2.10,<3.0)
Project-URL: Repository, https://github.com/JulianStier/pyshapley
Description-Content-Type: text/markdown

# pyshapley [![PyPI version](https://badge.fury.io/py/pyshapley.svg)](https://badge.fury.io/py/pyshapley) ![Tests](https://github.com/JulianStier/pyshapley/workflows/Tests/badge.svg) [![Downloads](https://pepy.tech/badge/pyshapley)](https://pepy.tech/project/pyshapley) [![Python 3.8](https://img.shields.io/badge/python-3.8-blue.svg)](https://www.python.org/downloads/release/python-380/) [![Python 3.9](https://img.shields.io/badge/python-3.9-blue.svg)](https://www.python.org/downloads/release/python-390/)


## Installation
- With **pip** from PyPi: ``pip install pyshapley``
- With **conda** in your *environment.yml* (recommended for reproducible experiments):
```yaml
name: exp01
channels:
- defaults
dependencies:
- pip>=20
- pip:
    - pyshapley
```
- With **poetry** (recommended for *projects*) using PyPi: ``poetry add pyshapley``
- From public GitHub: ``pip install --upgrade git+ssh://git@github.com:JulianStier/pyshapley.git``

