Mods
This commit is contained in:
parent
bdd287976e
commit
6fd8ba88c1
|
@ -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).
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue