Metadata-Version: 2.4
Name: django_cityloc_pkg_Charles_Battle
Version: 0.0.1
Summary: A Django app about city locations
Author: Author Name
Author-email: authoremail@example.com
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.8
License-File: LICENSE.txt
Requires-Dist: Django>=3.2
Dynamic: description
Dynamic: license-file

==============
City Locations
==============

City Locations is a Django app that can be installed in an existing Django project
Documentation: https://toddpy-django-cityloc-pkg.readthedocs.io/en/latest/

Installation
------------

1. Add "citylocations" to your INSTALLED_APPS setting in settings.py:
    INSTALLED_APPS = [
        ...
        
        'citylocations',

    ]

2. Include the citylocations URLconf in your project urls.py like this::
    path('', include('citylocations.urls')),

3. Start the development server and visit http://127.0.0.1:8000/
