Metadata-Version: 2.1
Name: gdaps
Version: 0.4.10
Summary: "Generic Django Apps Plugin System"
Home-page: https://gdaps.readthedocs.io
Author: Christian González
Author-email: christian.gonzalez@nerdocs.at
License: GPL-3.0-or-later
Project-URL: Documentation, https://gdaps.readthedocs.io
Project-URL: Source, https://gitlab.com/nerdocs/gdaps
Project-URL: Tracker, https://gitlab.com/nerdocs/gdaps/issues
Description: 
        The GDAPS library allows Django to make real "pluggable" apps.
        
        A standard Django "app" is *reusable* (if done correctly), but is not *pluggable*,
        like being distributed and "plugged" into a Django main application without modifications. GDAPS is filling this gap.
        
        The reason you want to use GDAPS is: **you want to create an application that should be extended via plugins**. GDAPS consists of a few bells and twistles where Django lacks "automagic":
        
        * Apps are automatically found using setuptools' entry points
        * Apps can provide their own URLs (they are included and merged into urlpatterns automatically)
        * Apps can define ``Interfaces``, that other GDAPS apps then can implement
        * Apps can provide Javascript frontends that are found and compiled automatically (WorkInProgress)
        
        
        ## Credits
        
        I was majorly influenced by other plugin systems when writing this code, big thanks to them:
        
        * Marty Alchin's [Simple plugin framework](http://martyalchin.com/2008/jan/10/simple-plugin-framework/)
        * The [PyUtilib](https://github.com/PyUtilib/pyutilib) library
        * [The Pretix ecosystem](https://pretix.eu/)
        * [Yapsy](http://yapsy.sourceforge.net/)
        * [Django-Rest-Framework](https://www.django-rest-framework.org/)
        * [Graphene-Django](http://docs.graphene-python.org/projects/django/en/latest/)
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django :: 3.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
