-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (37 loc) · 1.28 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
[tool.poetry]
name = "titan-model"
version = "3.3.2"
description = "TITAN Agent Based Model"
license = "GPL-3.0-only"
authors = ["Sam Bessey <[email protected]>", "Mary McGrath <[email protected]>"]
readme = "README.md"
homepage = "https://titanmodel.org"
repository = "https://github.com/pph-collective/TITAN"
documentation = "https://pph-collective.github.io/titan"
classifiers = ["Operating System :: OS Independent"]
packages = [{ include = "titan" }]
[tool.poetry.dependencies]
python = "^3.9"
paraml= "^0.1"
networkx = "^2.4"
nanoid = "^2.0"
numpy = "^1.26"
black = {version = "^23.1.0", optional = true}
flake8 = {version = "^3.8", optional = true}
mypy = {version = "^1.0.0", optional = true}
mkdocs = {version = "^1.2.4", optional = true}
oyaml = "^1.0"
mkdocstrings = {version = "^0.25.1", extras = ["python"], optional = true}
mkdocs-material = {version = "^9.5.26", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-cov = "^2.8"
[tool.poetry.extras]
linting = ["black", "flake8", "mypy"] # doesn't work on pypy
docs = ["mkdocs", "mkdocs-material", "mkdocstrings"]
[tool.poetry.scripts]
run_titan = "titan.run_titan:script_init"
grid2edges = "titan.utils:grid_to_edges_cli"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"