diff options
author | Paul Harrison <paul@harrison.sh> | 2022-11-18 13:10:08 +0000 |
---|---|---|
committer | Paul Harrison <paul@harrison.sh> | 2022-12-15 16:02:14 +0000 |
commit | adb149e8585d3753d7db0294237ad155123e2587 (patch) | |
tree | d0e0b756417d1124c8eedad9961fb4bf382a42a6 /pyproject.toml | |
parent | 5efd77728dd5a1c6a2fb5070b981ad4d028c3fe1 (diff) |
feat: Implement card and hand domain models
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index bb7671b..ed3d6de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,13 @@ [tool.poetry] name = "poker" -version = "0.1.0" +version = "0.2.0" description = "Single poker hand ranking service." authors = ["Paul Harrison"] readme = "README.md" [tool.poetry.dependencies] python = ">=3.11,<3.12" +pydantic = "^1.10.2" [tool.poetry.group.test.dependencies] pytest = "^7.2.0" |