Metadata-Version: 2.1
Name: enough-cards
Version: 0.0.2
Summary: A sample of how to create a deck of cards lib using nbdev
Home-page: https://github.com/genughaben/enough_cards
Author: Frank Wolf
Author-email: fwolf@posteo.de
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# enough_cards

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Install

```sh
pip install enough_cards
```

## How to use

The lib
[`Card`](https://genughaben.github.io/enough_cards/card.html#card) helps
to create and compare playing cards

```python
Card(1,2)
```

    ♠️2

```python
Card(1,2) < Card(1,1)
```

    False
