-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (37 loc) · 1.25 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 = "2.6.0"
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.6"
paraml= "^0.1"
networkx = "^2.4"
nanoid = "^2.0"
numpy = "^1.18"
black = {version = "^20.8b1", optional = true}
flake8 = {version = "^3.8", optional = true}
mypy = {version = "^0.812", optional = true}
mkdocs = {version = "^1.1", optional = true}
mkdocs-material = {version = "^7.0", optional = true}
mkdocstrings = {version = "^0.15.0", optional = true}
oyaml = "^1.0"
[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"