small fixes
This commit is contained in:
parent
3fb3f3ae6e
commit
c9b19dd05e
@ -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.
|
||||
|
||||
|
4
setup.py
4
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'"],
|
||||
|
Loading…
Reference in New Issue
Block a user