forked from Princeton-CDH/simulating-risk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 997 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 997 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "simulatingrisk"
description = "Agent-based modeling for simulations related to risk and rationality"
requires-python = ">=3.7"
license = {text = "Apache-2"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"mesa==2.1.5",
# "mesa @ git+https://github.com/projectmesa/mesa.git@main",
"matplotlib", # required by mesa
"altair>5.0.1"
]
dynamic = ["version", "readme"]
[project.scripts]
simrisk-hawkdovemulti-batchrun = "simulatingrisk.hawkdovemulti.batch_run:main"
[tool.setuptools.dynamic]
version = {attr = "simulatingrisk.__version__"}
readme = {file = ["README.md"]}
[tool.setuptools.packages.find]
include = ["simulatingrisk"]
# exclude tests and notebooks
[project.optional-dependencies]
dev = ["pre-commit", "pytest", "pytest-cov"]
[tool.black]
line-length = 88
target-version = ['py38']
# include = ''
# extend-exclude = ''