Metadata-Version: 1.0
Name: djanyolo
Version: 2020.1.0
Summary: Manage content for YOLO model.
Home-page: https://robomx.com
Author: RoboMx Team
Author-email: ask@robomx.tech
License: MIT
Description: DjanYolo
        =============
        
        Manage yolo images efficiently. A django app template that can be loaded to any existing app.
        
        Features
        ---------
        * Supports Django models
        * Admin panel
        * Image annotation
        * Image cropping
        
        
        Note
        --------
        This pypi is a part of #100DaysOfCode challenge. I needed to learn how packing are pushed and managed on pypi. So came up with simple module that was already cooked up. Check `original repo <https://github.com/MexsonFernandes/DjanYolo/>`__.
        
        How to install?
        ----------------
        
        
        .. code:: python
        
            INSTALLED_APPS = (
                # ...
                'djanyolo',
            )
            
        Register route
        ----------------
        
        .. code:: python
        
          from django.urls import include
          
          urlpatterns = [
                # ...
                url(r'^djanyolo$', include('djanyolo.urls')),
          ]
          
        Have fun!
        
        
        .. This is your project NEWS file which will contain the release notes.
        .. Example: http://www.python.org/download/releases/2.6/NEWS.txt
        .. The content of this file, along with README.rst, will appear in your
        .. project's PyPI page.
        
        News
        ====
        
        0.2a1
        -----
        
        *Release date: UNRELEASED*
        
        * Example news entry for the in-development version
        
        
        0.1
        ---
        
        *Release date: 15-Mar-2010*
        
        * Example news entry for a released version
        
        
Keywords: yolo,djanyolo,django
Platform: UNKNOWN
