-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (79 loc) · 1.68 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "bmi-example-agentpy"
description = "BMI AgentPy example"
version = "0.1.0.dev0"
readme = "README.md"
authors = [
{name = "Mark Piper"},
{email = "[email protected]"},
]
maintainers = [
{name = "Mark Piper"},
{email = "[email protected]"},
{name = "Eric Hutton"},
{email = "[email protected]"},
{name = "The CSDMS team"},
{email = "[email protected]"},
]
keywords = [
"bmi",
"agentpy",
"agent-based modeling",
"component modeling",
"earth science",
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.11"
dependencies = [
"agentpy",
"bmipy",
"joblib",
"matplotlib",
"networkx",
"numpy",
"pandas",
"pyyaml",
"SALib",
"scipy",
]
[project.urls]
Homepage = "https://csdms.colorado.edu"
Documentation = "https://github.com/csdms/bmi-example-agentpy/blob/main/README.md"
Repository = "https://github.com/csdms/bmi-example-agentpy"
[project.optional-dependencies]
dev = [
"nox",
]
examples = [
"jupyter",
]
testing = [
"bmi-tester",
"nbmake",
"pytest",
"pytest-datadir",
"pytest-cov",
"coverage",
]
format = [
"black",
"flake8",
"isort",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.zest-releaser]
tag-format = "v{version}"