small fixes

This commit is contained in:
Michael Pilosov 2022-11-26 23:14:53 -07:00
parent 3fb3f3ae6e
commit c9b19dd05e
2 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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'"],