-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (45 loc) · 1.1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "sponet"
version = "2.4.0"
description = "Spreading Processes on Networks"
license = "GPL-3.0-or-later"
authors = ["Marvin Lücke"]
readme = "README.md"
repository = "https://github.com/lueckem/SPoNet"
keywords = [
"voter model",
"threshold model",
"social dynamics",
"opinion dynamics",
"statistical physics",
"agent-based model",
"epidemiology",
"interacting particle system"
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = ">=1.21"
numba = ">=0.56"
networkx = ">=2.8.4"
scipy = ">=1.9.3"
matplotlib = ">=3.6.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.3.0"
pytest-cov = "^4.0.0"
black = "^24.3.0"
[tool.poetry.group.notebooks]
optional = true
[tool.poetry.group.notebooks.dependencies]
ipykernel = "^6.22.0"
matplotlib = "^3.7.1"
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"