Metadata-Version: 1.1
Name: relationlist
Version: 1.0.0
Summary: A module that contains a class that supports relations.
Home-page: https://github.com/wyz23x2/relationlist
Author: wyz23x2
Author-email: wyz23x2@163.com
License: UNKNOWN
Description: # relationlist 1.0.0b1
        This is the relationlist module, containing a class that supports relations.  
        Example:
        ```python
        >>> import relationlist
        >>> lis = relationlist.RelationList([1, 2, 3, 4])
        >>> lis.value
        [1, 2, 3, 4]
        >>> lis.relate(1, 3, assignment='1+3=4')
        >>> lis.relations
        [(1, 3, 'break', '1+3=4')]
        ```
        The Read the Doc document is comming before v1.3.0!
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: Microsoft :: Windows :: Windows 7
Classifier: Operating System :: Microsoft :: Windows :: Windows 8.1
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Operating System :: Microsoft :: Windows :: Windows 8
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
