Metadata-Version: 2.1
Name: django-kuldeep
Version: 1.5
Summary: database package
Home-page: https://github.com/softprodigyofficial/sample-python-package.git
Author: kuldeep khatana
Author-email: kuldeep.si.softprodigy@gmail.com
License: BSD-3-Clause  # Example license
Description: =====
        kuldeep
        =====
        
        Kuldeep is a Django app to conduct Web-based kuldeep. For each question,
        visitors can choose between a fixed number of answers.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "kuldeep" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'kuldeep',
            ]
        
        2. Include the kuldeep URLconf in your project urls.py like this::
        
            path('kuldeep/', include('kuldeep.urls')),
        
        3. Run ``python manage.py migrate`` to create the kuldeep 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/kuldeep/ to participate in the kuldeep.
Keywords: database-package
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
