Metadata-Version: 1.1
Name: django-relationships
Version: 0.3.2
Summary: descriptive relationships between auth.User
Home-page: http://github.com/coleifer/django-relationships/tree/master
Author: Charles Leifer
Author-email: coleifer@gmail.com
License: UNKNOWN
Description: ====================
        django-relationships
        ====================
        
        Descriptive relationships between auth.users::
        
            In [4]: john.relationships.friends()
            Out[4]: [<User: Yoko>]
        
            In [5]: john.relationships.following()
            Out[5]: [<User: Paul>, <User: Yoko>]
        
            In [6]: john.relationships.followers()
            Out[6]: [<User: Yoko>]
        
            In [7]: john.relationships.blockers()
            Out[7]: [<User: Paul>]
        
            In [8]: paul.relationships.blocking()
            Out[8]: [<User: John>]
        
        
        You can create as many types of relationships as you like, or just use the
        default ones, 'following' and 'blocking'.
        
        
        From, To and Symmetrical
        ------------------------
        
        Relationship types define each of the following cases:
        
        * from - 'following', who **I** am following
        * to - 'followers', who is following **me**
        * symmetrical - 'friends', **we** follow eachother
        
        Relationship types can be *login_required*, or *private*, and if you want
        to make a relationship type unviewable (i.e. you may not want to allow
        users to see who is blocking them), simply give it a unmatchable slug,
        like '!blockers'.
        
        
        Admin Interface
        ---------------
        
        Relationships hook right into the pre-existing User admin, and appear below
        the 'Groups' inline.
        
        
        Installation
        ------------
        
        `python setup.py install`
        
        OR
        
        put the ``relationships`` folder on your python-path
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
