Metadata-Version: 2.1
Name: django-ops
Version: 0.4.5
Summary: A simple Django app for common django_ops utilities
Home-page: https://www.example.com/
Author: Alan
Author-email: alan@hkasianark.com
License: BSD License
Description: ===========
        Django_Ops
        ===========
        
        Django_Ops is a simple Django app to conduct Web-based polls. For each
        question, visitors can choose between a fixed number of answers.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "django_ops" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'django_ops',
            ]
        
        2. Include the polls URLconf in your project urls.py like this::
        
            path('ops/', include('django_ops.urls')),
        
        3. Run `python manage.py migrate` to create the polls models.
        
        4. Start the development server.
        
        5. Visit http://127.0.0.1:8000/ops/.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
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.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.5
Description-Content-Type: text/x-rst
