Metadata-Version: 2.1
Name: kblackjack
Version: 0.1.0
Summary: A simple single-player blackjack simulator
Home-page: https://git.kasad.com/kblackjack/about
Author: Kian Kasad
Author-email: dev@kasad.com
License: BSD-2-Clause-Patent
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# kblackjack
A simple single-player blackjack simulator

---

## Installing

You can install kblackjack using Python's [pip
module](https://pypi.org/project/pip/) using either of the following commands:

```sh
$ git clone https://git.kasad.com/kblackjack.git
$ cd kblackjack
$ python -m pip install .

# or

$ python -m pip install git+https://git.kasad.com/kblackjack.git
```

## Running

To run the blackjack simulator from the command line, either use the
`kblackjack` console entry point or invoke the `kblackjack` package:

```sh
$ kblackjack

# or

$ python -m kblackjack
```

To run from within a Python script, use the `kblackjack.run()` function:

```python
import kblackjack
kblackjack.run()
```

## Contributing

Contributions can be sent in patch form to <dev@kasad.com>.  
See `git-send-email(1)` or <https://git-send-email.io> for information on how
to send patches.


