Skip to content

Commit 9f90aec

Browse files
authored
Merge pull request #13 from crd/develop
Address requests finding
2 parents 36c6b08 + aed3d1d commit 9f90aec

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

Pipfile.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ From the Command Line
4141
$ faker credit_score -i faker_credit_score
4242
756
4343
44-
From within Python
45-
~~~~~~~~~~~~~~~~~~
44+
From within your Python Project
45+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4646

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

@@ -64,7 +64,7 @@ Add the ``CreditScore`` Provider to your ``Faker`` instance:
6464
Contributing
6565
------------
6666

67-
Please, by all means, contribute!
67+
By all means, contribute! I'd be happy to work with any first-time open source contributors so please, don't be shy.
6868

6969
Testing
7070
-------

faker_credit_score/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Package version."""
2-
VERSION = (0, 2, 1)
2+
VERSION = (0, 2, 2)
33

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

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ def run(self):
112112
'License :: OSI Approved :: BSD License',
113113
'Programming Language :: Python',
114114
'Programming Language :: Python :: 3 :: Only',
115-
'Programming Language :: Python :: 3.3',
116-
'Programming Language :: Python :: 3.4',
117-
'Programming Language :: Python :: 3.5',
118115
'Programming Language :: Python :: 3.6',
116+
'Programming Language :: Python :: 3.7',
119117
'Intended Audience :: Developers',
120118
'Topic :: Software Development :: Libraries :: Python Modules',
119+
'Topic :: Software Development :: Testing',
120+
'Topic :: Utilities',
121121
],
122122
# $ setup.py publish support.
123123
cmdclass={

0 commit comments

Comments
 (0)