Metadata-Version: 1.1
Name: unionfind
Version: 0.0.9
Summary: `unionfind` is a package for unionfind.
Home-page: https://pypi.python.org/pypi/unionfind
Author: Saito Tsutomu
Author-email: tsutomu@kke.co.jp
License: PSFL
Description: `unionfind` is a package for unionfind.
        ::
        
           u = unionfind(3) # There are 3 items.
           u.unite(0, 2) # Set 0 and 2 to same group.
           u.issame(1, 2) # Ask "Are 1 and 2 same?"
           u.groups() # Return groups.
        
        Requirements
        ------------
        * Python 2 or Python 3
        
        Features
        --------
        * nothing
        
        Setup
        -----
        ::
        
           $ pip install unionfind
           or
           $ easy_install unionfind
        
        History
        -------
        0.0.1 (2015-4-3)
        ~~~~~~~~~~~~~~~~~~
        * first release
        
        
Keywords: unionfind
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
