Metadata-Version: 1.1
Name: django-bi
Version: 1.0.7
Summary: A simple Django app to conduct business intelligence.
Home-page: https://zhelyabuzhsky.com/
Author: Ilya Zhelyabuzhsky
Author-email: zhelyabuzhsky@icloud.com
License: GPLv3 License
Description: .. image:: https://img.shields.io/travis/zhelyabuzhsky/django-bi.svg
            :target: https://travis-ci.org/zhelyabuzhsky/django-bi
        .. image:: https://img.shields.io/pypi/v/django-bi.svg
            :target: https://pypi.org/project/django-bi/
        .. image:: https://img.shields.io/pypi/dm/django-bi.svg
            :target: https://pypi.org/project/django-bi/
        
        =====================
        Business intelligence
        =====================
        
        BI is a simple Django app to conduct business intelligence.
        
        Quick start
        -----------
        
        1. Add "bi" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'bi',
            ]
        
        2. Add OBJECTS_PATH setting like this::
        
            OBJECTS_PATH='objects',
        
        3. Include the bi URLconf in your project urls.py like this::
        
            path('', include('bi.urls')),
        
        4. Run `python manage.py migrate` to create the bi models.
        
        5. Start the development server.
        
        6. Visit http://127.0.0.1:8000/ to see your dashboards.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
