Metadata-Version: 2.1
Name: hideocardgames
Version: 0.1.0
Author: Hideo Nukada
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Hideo Card Games Library

A simple Python library to play various card games, including High-Low, and Blackjack.

## Installation

Install the package using pip:

`pip install hideocardgames`

## Usage

# Add players, deal cards, etc.

```
### High-Low
```python
from hideocardgames.high_low import HighLow

game = HighLow()
game.start_game()

# Draw cards, compare cards, etc.
```
### Blackjack
```python
from hideocardgames.blackjack import Blackjack

game = Blackjack()
game.start_game()

# Add players, deal cards, hit, stand, etc.
```
## License
This project is licensed under the MIT License - see the LICENSE file for details.
