Metadata-Version: 1.2
Name: realpython-django-receipts
Version: 1.0.3
Summary: Sample installable django app
Home-page: https://github.com/realpython/django-receipts
License: MIT
Description: django-receipts
        ===============
        
        This is sample code used in the Real Python article [Writing an Installable Django App](???). The article describes how to take an app from an existing Django project and make it a stand-alone installable package avilable on PyPI.
        
        Installable App
        ---------------
        
        This app models a list of items on a receipt. Each item has a description and a cost. A receipt may reference multiple items.
        
        This app can be installed and used in your django project by:
        
        .. code-block:: bash
        
            $ pip install realpython-django-receipts
        
        
        Edit your `settings.py` file to include `'receipts'` in the `INSTALLED_APPS`
        listing.
        
        .. code-block:: python
        
            INSTALLED_APPS = [
                ...
        
                'receipts',
            ]
        
        
        Edit your project `urls.py` file to import the URLs:
        
        
        .. code-block:: python
        
            url_patterns = [
                ...
        
                path('receipts/', include('receipts.urls')),
            ]
        
        
        Finally, add the models to your database:
        
        
        .. code-block:: bash
        
            $ ./manage.py makemigrations receipts
        
        
        The "project" Branch
        --------------------
        
        The `master branch <https://github.com/realpython/django-receipts/tree/master>`_ contains the final code for the PyPI package. There is also a `project branch <https://github.com/realpython/django-receipts/tree/project>`_ which shows the "before" case -- the Django project before the app has been removed.
        
        
        Docs & Source
        -------------
        
        * Article: ???
        * Source: https://github.com/realpython/django-receipts
        * PyPI: https://pypi.org/project/realpython-django-receipts/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
