Metadata-Version: 1.1
Name: django-potato-test
Version: 0.1
Summary: Potato is a Django app for blogging..
Home-page: https://www.example.com/
Author: Mansillo
Author-email: daniel.mansilla.canoles@gmail.com
License: BSD-3-Clause
Description: ======
        Potato
        ======
        
        Potato is a Django app for blogging.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "potato" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'potato',
            ]
        
        2. Include the potato URLconf in your project urls.py like this::
        
            path('potato/', include('potato.urls')),
        
        3. Run ``python manage.py migrate`` to create the potato models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/
           to create a poll (you'll need the Admin app enabled).
        
        5. Visit http://127.0.0.1:8000/potato/ to participate in the poll.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
