Metadata-Version: 1.1
Name: pyvenny
Version: v0.1-alpha
Summary: Venn diagram plot of four sets, like venny.
Home-page: http://github.com/CSB-IG/pyvenny
Author: Rodrigo Garcia
Author-email: rgarcia@inmegen.gob.mx
License: GPLv3
Description: pyvenny
        =======
        
        Plot four set venn diagrams, like venny (http://bioinfogp.cnb.csic.es/tools/venny/)
        but using python sets:
        
        I just drew the damn thing using inkscape and then used that as a jinja template.
        Set algebra I just did by hand.
        
        To use:
        
            >>> import pyvenny
            >>> with open('diagram.svg', 'w') as f:
                     f.write( pyvenny.render_four_set_venn(
                     set(['a','b','c','d']),
                     set(['b','c','d','e']),
                     set(['c','d','e','f']),
                     set(['d','e','f','g']))
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Scientific/Engineering :: Visualization
