Metadata-Version: 2.1
Name: credit-scoring-toolkit
Version: 0.0.2
Summary: A Python package designed as a credit scoring toolkit.
Home-page: https://github.com/Keris/creditscoring
Author: Liqiang Du
Author-email: dlq137@gmail.com
License: MIT
Keywords: finance,credit,scorecard,regression,machine learning
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: matplotlib (>=1.1)
Requires-Dist: numpy (>=0.7.0)
Requires-Dist: pandas (>=0.20.1)
Requires-Dist: scipy (>=0.10.0)
Requires-Dist: seaborn (>=0.8.0)
Requires-Dist: scikit-learn (>=0.18)

# creditscoring

creditscoring is a Python package built as a credit scoring toolkit.

<table>
<tr>
<td>Supports</td>
<td>Python 3.6,3.7
</tr>
<tr>
<td>Latest Release</td>
<td>
  <a href="https://pypi.org/project/credit-scoring-toolkit/">
    <img src="https://img.shields.io/pypi/v/credit-scoring-toolkit.svg" alt="latest release" />
  </a>
</td>
</tr>
<tr>
<td>Package Status</td>
<td>
  <a href="https://pypi.org/project/credit-scoring-toolkit/">
    <img src="https://img.shields.io/pypi/status/credit-scoring-toolkit.svg" alt="latest release" />
  </a>
</td>
</tr>
<tr>
<td>License</td>
<td>
  <a href="https://github.com/Keris/creditscoring/blob/master/LICENSE">
    <img src="https://img.shields.io/pypi/l/credit-scoring-toolkit.svg" alt="license" />
  </a>
</td>
</tr>
</table>

## Installation

### Requirements

To use creditscoring the following packages are required:

- pandas >= 0.20.1
- numpy >= 0.7.0
- matplotlib >= 1.1
- seaborn >= 0.8.0
- scipy >= 0.10.0
- scikit-learn >= 0.18

Development and testing additionally require:

- pytest
- coverage
- flake8
- twine

### Install latest release version via pip

```bash
pip install credit-scoring-toolkit
```

### Install latest development version

```bash
pip install git+https://github.com/Keris/creditscoring.git
```
or
```bash
git clone https://github.com/Keris/creditscoring.git
python setup.py install
```

