Metadata-Version: 2.1
Name: eule
Version: 0.2.0
Summary: Euler's diagrams are non-empty Venn's diagrams
Home-page: http://eule.readthedocs.org
Author: Bruno Peixoto
Author-email: Bruno <brunolnetto@gmail.com>
License: MIT license
Keywords: euler,venn,diagrams
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=2.7
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS.rst

![a night owl](https://raw.githubusercontent.com/quivero/eule/main/images/eule_small.png)

[![Version](https://img.shields.io/pypi/v/eule.svg)](https://pypi.python.org/pypi/eule)
[![python](https://img.shields.io/pypi/pyversions/eule.svg)](https://pypi.org/project/eule/)
[![codecov](https://codecov.io/gh/quivero/eule/branch/main/graph/badge.svg?token=PJMBaLIqar)](https://codecov.io/gh/quivero/eule)
[![downloads](https://img.shields.io/pypi/dw/eule)](https://pypi.org/project/eule/)
[![Documentation Status](https://readthedocs.org/projects/eule/badge/?version=latest)](https://eule.readthedocs.io/en/latest/?version=latest)

Euler\'s diagrams are non-empty Venn\'s diagrams. For further information about:

1. the library: read the documentation on URL <https://eule.readthedocs.io>;
2. Euler diagrams: read the wikipedia article <https://en.wikipedia.org/wiki/Euler_diagram>

Have fun!

<img src="https://github.com/quivero/eule/blob/main/images/euler_venn.png?raw=true" width="400" height="364"/>

How to install
================

We run the command on desired installation environment:

``` {.bash}
    pip install eule
```

Features
================

We run a file with extension `*.py` with following content:

``` {.python}
    #!/usr/bin/env python
    from eule import spread_euler

    diagram = spread_euler(
        {
            'a': [1, 2, 3],
            'b': [2, 3, 4],
            'c': [3, 4, 5],
            'd': [3, 5, 6]
        })

    # Euler dictionary: {'a,b': [2], 'b,c': [4], 'a,b,c,d': [3], 'c,d': [5], 'd': [6], 'a': [1]}
    print(diagram)
```

License
===============

-   Free software: MIT license


Credits
===============

This package was created with
[Cookiecutter](https://github.com/audreyr/cookiecutter) and the
[audreyr/cookiecutter-pypackage](https://github.com/audreyr/cookiecutter-pypackage)
project template.


=======
History
=======

0.1.0 (2022-10-30)
------------------

* First release on PyPI.


0.1.4 (2022-10-31)
------------------

* Render PyPI repository with Markdown.
