Skip to content

Commit

Permalink
Merge pull request #12 from crd/develop
Browse files Browse the repository at this point in the history
Merge develop into master in preparation of v0.2.1
  • Loading branch information
crd authored Sep 22, 2018
2 parents 9865872 + 6778d2e commit 36c6b08
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 20 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ most common non-industry specific credit scoring models are supported:
* Experian/Fair Isaac Risk Model V2SM
* TransUnion FICO Risk Score, Classic 04

Usage
-----
Installation
------------

Install with pip:

.. code:: bash
$ pip install faker_credit_score
$ pip install faker-credit-score
Alternatively, install with setup.py:

Expand All @@ -30,6 +30,20 @@ Alternatively, install with setup.py:
$ git clone https://github.com/crd/faker_credit_score.git
$ cd faker_credit_score && python setup.py install
Usage
-----

From the Command Line
~~~~~~~~~~~~~~~~~~~~~

.. code:: bash
$ faker credit_score -i faker_credit_score
756
From within Python
~~~~~~~~~~~~~~~~~~

Add the ``CreditScore`` Provider to your ``Faker`` instance:

.. code:: python
Expand All @@ -50,9 +64,9 @@ Add the ``CreditScore`` Provider to your ``Faker`` instance:
Contributing
------------

Please, by all means, contribute!
Please, by all means, contribute!

testing
Testing
-------

Execute unit tests and calculate code coverage like so:
Expand All @@ -69,7 +83,7 @@ Execute unit tests and calculate code coverage like so:
$ coverage report
Name Stmts Miss Cover
----------------------------------------------------
faker_credit_score/__init__.py 40 0 100%
faker_credit_score/__init__.py 49 0 100%
.. |pypi| image:: https://img.shields.io/pypi/v/faker_credit_score.svg?style=flat-square&label=version
Expand Down
2 changes: 1 addition & 1 deletion faker_credit_score/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Package version."""
VERSION = (0, 2, 0)
VERSION = (0, 2, 1)

__version__ = '.'.join(map(str, VERSION))

0 comments on commit 36c6b08

Please sign in to comment.