From c9b19dd05e7c6bff782a2cc48ec87ce4b580b24e Mon Sep 17 00:00:00 2001 From: Michael Pilosov Date: Sat, 26 Nov 2022 23:14:53 -0700 Subject: [PATCH] small fixes --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b8c3ff9..f09af9c 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ - A player's placement cannot be too complicated (max is 10) - A `Strategy` is formed at random based on exhausting the strategy budget, which is determined by considering the player's total budget and the minimum number of games they desire to play. - It is possible to have some money left over (either due to reaching the maximum number of placements or not having enough money to place a bet with the remaining available chips), meaning the strategy budget is less than the cost to play the strategy. - - When players cannot play their strategy anymore, they leave the game, meaning they can end the simulation with some remaining money (e.g. $100 to play a $40 strategy that you lose twice in a row will leave you with $20 remaining). + - When players cannot play their strategy anymore, they leave the game, meaning they can end the simulation with some remaining money (e.g. `$100` to play a `$40` strategy that you lose twice in a row will leave you with `$20` remaining). - When using `generate_players`, all players will have the same number of minimum games and budget. diff --git a/setup.py b/setup.py index 3d0ad47..8abe23b 100644 --- a/setup.py +++ b/setup.py @@ -10,13 +10,13 @@ with open(BASEDIR.joinpath("README.md"), "r") as fp: setup( name="pyroulette", - version="0.0.1", + version="0.0.1.post4", description="A package for exploring roulette strategies.", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown", author="Mathematical Michael", author_email="consistentbayes@gmail.com", - url="https://github.com/mathematicalmichael/pyroulette", + url="https://git.clfx.cc/mm/roulette", packages=["pyroulette"], license="MIT", install_requires=["dataclasses; python_version<'3.7'"],