Metadata-Version: 2.0
Name: django-magic-cards
Version: 0.2.0
Summary: A Django app for the Oracle text of all Magic: the Gathering cards.
Home-page: https://github.com/pbaranay/django-magic-cards
Author: Paul Baranay
Author-email: pbaranay@gmail.com
License: MIT
Keywords: django-magic-cards
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Games/Entertainment
Requires-Dist: django-light-enums (>=0.1.6)
Requires-Dist: inflect (>=0.2.5)
Requires-Dist: requests (>=2.18.2)

==================
Django Magic Cards
==================

.. image:: https://badge.fury.io/py/django-magic-cards.svg
    :target: https://badge.fury.io/py/django-magic-cards

.. image:: https://travis-ci.org/pbaranay/django-magic-cards.svg?branch=master
    :target: https://travis-ci.org/pbaranay/django-magic-cards

.. image:: https://codecov.io/gh/pbaranay/django-magic-cards/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/pbaranay/django-magic-cards

Django Magic Cards is a pluggable Django app for the Oracle text of all Magic: the Gathering cards.

Documentation
-------------

The full documentation is at https://django-magic-cards.readthedocs.io.

Quickstart
----------

Install the package::

    pip install django-magic-cards

Add the app to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'magic_cards.apps.MagicCardsConfig',
        ...
    )

Add Django Magic Cards' tables to your the database::

    ./manage.py migrate magic_cards

Populate the card database::

    ./manage.py import_magic_cards

Acknowledgments
---------------

* MTGJSON_ for providing up-to-date card data.
* Cookiecutter_ and `cookiecutter-djangopackage`_ for providing the structure for this project.

.. _MTGJSON: http://mtgjson.com/
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage

Disclaimer
----------

The literal and graphical information presented in this software about Magic: the Gathering, including Oracle text and card images, is copyright Wizards of the Coast, LLC, a subsidiary of Hasbro, Inc. This project is not produced by, endorsed by, supported by, or affiliated with Wizards of the Coast.




History
-------

0.2.0 (2017-08-16)
++++++++++++++++++

* Speed up import function (`#9`_).
* Implement basic admin pages (`#7`_).

.. _#9: https://github.com/pbaranay/django-magic-cards/issues/9
.. _#7: https://github.com/pbaranay/django-magic-cards/issues/7

0.1.1 (2017-08-10)
++++++++++++++++++

* Increase maximum length of a `Card`'s `name` (`#2`_).

.. _#2: https://github.com/pbaranay/django-magic-cards/issues/2

0.1.0 (2017-08-08)
++++++++++++++++++

* First release on PyPI.


