Metadata-Version: 2.1
Name: django_usermangment
Version: 1.1.3
Summary: A Django app to manage users
Home-page: 
Author: Hamed Jamali
Author-email: hamed.jamali.software@gmail.com
License: MIT
Keywords: django,user,management
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django>=5.0
Requires-Dist: django-bootstrap5
Requires-Dist: pillow
Requires-Dist: django-cleanup
Requires-Dist: django-allauth
Requires-Dist: django-htmx
Requires-Dist: pyjwt
Requires-Dist: cryptography

Quick start 
-----------
1. Add "django_usermangment" to your INSTALLED_APPS setting like this::
```
    INSTALLED_APPS = [
        ...
        'django_usermangment',
    ]
```
2. Include the django_usermangment URLconf in your project urls.py like this::
```
    path('user/', include('django_usermangment.urls')),
```
3. Run `python manage.py migrate` to create the django_usermangment models.
4. Start the development server and visit http://127.0.0.1:8000/admin/
   to create a user (you'll need the Admin app enabled).
5. Visit http://127.0.0.1:8000/user/ to create a user.
