This commit is contained in:
Auric Vente 2024-07-20 09:31:01 -06:00
parent bdd287976e
commit 6fd8ba88c1
2 changed files with 7 additions and 1 deletions

View File

@ -36,6 +36,12 @@ The ant with the highest score is shown in the footer.
Just open it, hatch some ants, and place it somewhere in your monitor. Just open it, hatch some ants, and place it somewhere in your monitor.
## Installation
```sh
pipx install git+https://github.com/madprops/cromulant --force
```
## Algorithm ## Algorithm
A random ant is picked based on weights (oldest update date weighs more). A random ant is picked based on weights (oldest update date weighs more).

View File

@ -50,7 +50,7 @@ with open("requirements.txt") as f:
requirements = f.read().splitlines() requirements = f.read().splitlines()
package_data = {} package_data = {}
package_data[program] = ["*.png", "*.jpg", "*.json", "*.mp3"] package_data[program] = ["**/*.png", "**/*.jpg", "**/*.json", "**/*.mp3"]
setup( setup(
name=title, name=title,