Skip to content

Commit 6651f68

Browse files
authored
Merge branch 'main' into game_of_life
2 parents d6bb878 + 3612975 commit 6651f68

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

examples/boid_flockers/boid_flockers/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def make_agents(self):
6767
velocity,
6868
self.vision,
6969
self.separation,
70-
**self.factors
70+
**self.factors,
7171
)
7272
self.space.place_agent(boid, pos)
7373
self.schedule.add(boid)

pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[project]
2+
name = "mesa-models"
3+
version = "0.1.0"
4+
description = "Importable Mesa models."
5+
authors = [
6+
{name = "Project Mesa Team", email = "[email protected]"}
7+
]
8+
license = {file = "LICENSE"}
9+
readme = "README.rst"
10+
requires-python = ">=3.8"
11+
dependencies = [
12+
"mesa>=1.2"
13+
]
14+
15+
16+
[build-system]
17+
requires = [
18+
"setuptools",
19+
"wheel",
20+
]
21+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[options]
2+
package_dir =
3+
mesa_models.boltzmann_wealth_model = examples/boltzmann_wealth_model/boltzmann_wealth_model

0 commit comments

Comments
 (0)