Metadata-Version: 2.3
Name: hundredandten-automation-naive
Version: 0.0.2
Summary: Naive strategy player for the game Hundred and Ten
Author: Seamus Lowry
License: MIT
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Dist: hundredandten-state>=0.0.0,<1.0.0
Requires-Dist: hundredandten-deck>=0.0.0,<1.0.0
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# hundredandten-automation-naive

Naive strategy player for the card game Hundred and Ten.

Provides `action_for(game, player)` — returns the engine `Action` for a naive
automated player in the given game.

```python
from hundredandten.automation import naive

action = naive.action_for(game, player_id)
game.act(action)
```
