Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Django-faker
============

*Django-faker* uses `fake-factory`_ package to generate test data for Django models and templates.
*Django-faker* uses `Faker`_ package to generate test data for Django models and templates.

|pypi| |unix_build| |windows_build| |coverage| |downloads| |license|

Expand Down Expand Up @@ -78,7 +78,7 @@ Faker is smart enough to relate the populated `Player` entities to one of popula
Template tags and filter
~~~~~~~~~~~~~~~~~~~~~~~~

Django-faker offers a useful template tags and filters for interact with `PyFaker`_::
Django-faker offers a useful template tags and filters for interact with `Faker`_::

{% fake 'name' as myname %}{% fake 'dateTimeBetween' '-10d' as mydate %}

Expand Down Expand Up @@ -153,7 +153,8 @@ Changelog
`0.3dev <http://github.com/joke2k/django-faker/compare/v0.2...master>`__
------------------------------------------------------------------------

- Upgrade fake-factory version
- Renamed fake-factory to faker
- Refactoring of tests

`0.2 - 23-January-2013 <http://github.com/joke2k/django-faker/compare/v0.1...v0.2>`__
-------------------------------------------------------------------------------------
Expand All @@ -168,7 +169,7 @@ Changelog
- Add django template tag and filter


.. _fake-factory: https://www.github.com/joke2k/faker/
.. _faker: https://www.github.com/joke2k/faker/

.. |pypi| image:: https://img.shields.io/pypi/v/django-faker.svg?style=flat-square&label=version
:target: https://pypi.python.org/pypi/django-faker
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
django
fake-factory==0.5.3
faker>=0.7.3
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def read_file(filename):
],
keywords='faker fixtures data test django',
long_description=read_file('README.rst'),
install_requires=['django','fake-factory==0.2'],
tests_require=['django','fake-factory==0.2'],
install_requires=['django','faker'],
tests_require=['django','faker'],
test_suite="runtests.runtests",
zip_safe=False,
)