Metadata-Version: 2.0
Name: django-acc
Version: 0.0.2
Summary: A simple Django app for account managemnt
Home-page: UNKNOWN
Author: D.V. Nguyen
Author-email: dv@dvnguyen.com
License: MIT
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.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.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.5
Requires-Dist: django (>=2.0)
Requires-Dist: djangorestframework (>=3.7.7)

DON’T USE ME. I’M BEING USED INTERNALLY ONLY.

Django-acc: Another reusable Django account management application

Installation
============

``pip install django-acc`` # Requirements django >= 2.0
djangorestframework >= 3.7.7 ‘rest_framework’, # Configurations ##
settings.py - Add ``rest_framework`` to INSTALLED_APPS - Add
``accounts`` to INSTALLED_APPS

urls.py
-------

-  Add ``path('accounts', include('accounts.urls'))`` to ``urlpatterns``

Templates
---------

-  Make sure that you have a ``base.html`` templates


