Metadata-Version: 2.0
Name: django-budget
Version: 0.8.14
Summary: A tool to help newsrooms manage their content, from pitch to planning to production.
Home-page: https://github.com/DallasMorningNews/django-budget/
Author: Allan James Vestal, The Dallas Morning News
Author-email: newsapps@dallasnews.com
License: AGPLv3
Download-URL: https://github.com/DallasMorningNews/django-budget/archive/0.8.14.tar.gz
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: Django (<2.0,>=1.9.0)
Requires-Dist: django-admin-sortable2 (~=0.6.16)
Requires-Dist: django-editorial-staff (>=0.7.1)
Requires-Dist: django-filter (~=1.0.0)
Requires-Dist: djangorestframework (~=3.6.0)
Requires-Dist: djangorestframework-camel-case (~=0.2.0)
Requires-Dist: psycopg2 (~=2.6.1)
Requires-Dist: python-dateutil (~=2.6.1)
Requires-Dist: pytz (~=2017.2)
Requires-Dist: requests (~=2.18.4)
Requires-Dist: six (~=1.11.0)

django-budget
=============

*A tool to help newsrooms manage their content, from pitch to planning to production.*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

A project of *The Dallas Morning News*
''''''''''''''''''''''''''''''''''''''

--------------

``django-budget`` is a Django and JavaScript app that can track stories
as they are conceived, assembled and published.

It includes an approachable interface that can handle all the daily
demands of planning and assembling content across news organizations
large and small, based on a standards-compliant API that can be used by
other consumers — from chatbots to full-screen displays to many other
applications.

Detailed documentation (including a user guide) will be added at a later
date.

Quick start
-----------

#. Install this app into a Django project and virtual environment (more
   information about reaching this stage will also be forthcoming):

   ::

        pip install django-budget

#. Add "budget" to your INSTALLED_APPS setting like this:

   ::

       INSTALLED_APPS = [
           ...
           'budget',
       ]

#. Include the budget URLconf in your project urls.py like this:

   ::

       url(r'^budget/', include('budget.urls')),

#. Run ``python manage.py migrate`` to create the budget models.

#. Start the development server and visit http://127.0.0.1:8000/budget/
   to see your story budget and begin planning stories.

#. Visit http://127.0.0.1:8000/budget/api/ to explore the app's REST
   API.

More information
----------------

Find out more about ``django-budget`` -- including a walkthrough of its configuration settings and of its requirements -- in the **README.md** file at the root of this codebase.


