Metadata-Version: 2.1
Name: django-societies
Version: 0.1.7
Summary: A Django module that provides a collection of abstract models for handling data associated with people, groups, organizations, places, events and means of communication.
Home-page: https://www.schemefusion.com/
Author: Onyeibo Oku
Author-email: onyeibo@schemefusion.com
License: GPLv3
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
License-File: LICENSE
Requires-Dist: Django>=4.2

=========
societies
=========

Societies is a collection of abstract models for building django apps that deal with people, places, events and means of communication.

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "societies" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...,
        "societies",
    ]


2. To use societies, import and subclass the relevant model classes.
3. Add extra model fields as needed.
4. subclass the Meta class as needed.
