blackjack-cli 0.3.1__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {blackjack_cli-0.3.1 → blackjack_cli-1.0.2}/PKG-INFO +9 -3
- blackjack_cli-1.0.2/README.md +6 -0
- {blackjack_cli-0.3.1 → blackjack_cli-1.0.2}/pyproject.toml +2 -1
- blackjack_cli-0.3.1/README.md +0 -2
- {blackjack_cli-0.3.1/src → blackjack_cli-1.0.2}/blackjack_cli/__init__.py +0 -0
- {blackjack_cli-0.3.1/src → blackjack_cli-1.0.2}/blackjack_cli/blackjack.py +0 -0
- {blackjack_cli-0.3.1/src → blackjack_cli-1.0.2}/blackjack_cli/config.py +0 -0
- {blackjack_cli-0.3.1/src → blackjack_cli-1.0.2}/blackjack_cli/console.py +0 -0
- {blackjack_cli-0.3.1/src → blackjack_cli-1.0.2}/blackjack_cli/models/__init__.py +0 -0
- {blackjack_cli-0.3.1/src → blackjack_cli-1.0.2}/blackjack_cli/models/stats_model.py +0 -0
- {blackjack_cli-0.3.1/src → blackjack_cli-1.0.2}/blackjack_cli/stats.py +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: blackjack-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: This is a cli-based blackjack game! Woo!
|
|
5
|
+
Home-page: https://github.com/vlek/blackjack-cli
|
|
5
6
|
License: GPLv3
|
|
6
7
|
Author: Vlek
|
|
7
8
|
Author-email: derek@mccammond.org
|
|
@@ -13,8 +14,13 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
15
|
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
|
|
15
16
|
Requires-Dist: rich-click (>=1.6.1,<2.0.0)
|
|
17
|
+
Project-URL: Repository, https://github.com/vlek/blackjack-cli
|
|
16
18
|
Description-Content-Type: text/markdown
|
|
17
19
|
|
|
18
|
-
# Blackjack
|
|
19
|
-
A
|
|
20
|
+
# Blackjack-cli
|
|
21
|
+
A Python-based Blackjack CLI game
|
|
22
|
+
|
|
23
|
+
Play Blackjack in the terminal!
|
|
24
|
+
|
|
25
|
+
[](https://asciinema.org/a/667218)
|
|
20
26
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "blackjack-cli"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "1.0.2"
|
|
4
4
|
description = "This is a cli-based blackjack game! Woo!"
|
|
5
5
|
authors = ["Vlek <derek@mccammond.org>"]
|
|
6
6
|
license = "GPLv3"
|
|
7
7
|
readme = "README.md"
|
|
8
|
+
repository = "https://github.com/vlek/blackjack-cli"
|
|
8
9
|
|
|
9
10
|
[tool.poetry.dependencies]
|
|
10
11
|
python = "^3.10"
|
blackjack_cli-0.3.1/README.md
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|