Metadata-Version: 2.4
Name: pytruco
Version: 0.1.0
Summary: Uruguayan Truco engine, simulator, and library
Author-email: JP Filevich <juanfilevich@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/truquito/pytruco
Project-URL: Repository, https://github.com/truquito/pytruco
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pytruco

`pytruco` is a pure Python Uruguayan Truco engine, simulator, and library.

It provides:

- core game/domain logic under `pytruco.pdt`
- protocol/message helpers under `pytruco.enco`
- perspective helpers under `pytruco.perspectiva`
- executable entry points such as `pytruco-bench` and `pytruco-testee`

Examples:

```bash
python -m pytruco.bench -p 1 -n 6 -t 10
pytruco-bench -p 1 -n 6 -t 10
python -m pytruco.testee --validator_addr=localhost:6666
```

```python
from pytruco.pdt.partida import Partida
```
