-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.07 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 = "nzshm-model-graphql-api"
version = "0.2.0"
description = ""
authors = ["NSHM <[email protected]>", "Chris Chamberlain <[email protected]>"]
license = "AGPL3"
readme = "README.md"
packages = [{include = "nshm_model_graphql_api"}]
[tool.poetry.dependencies]
python = "^3.10"
tox = "^4.2.8"
black = { version = "^22.3"}
isort = { version = "^5.8.0"}
flake8 = { version = "^3.9.2"}
flake8-docstrings = { version = "^1.6.0", optional = true }
pytest = "^7.4.0"
pytest-cov = { version = "^2.12.0"}
virtualenv = { version = "^20.2.2", optional = true}
pip = { version = "^23.2.1", optional = true}
bump2version = {version = "^1.0.1"}
mypy = "^1.5.1"
nzshm-model = {git = "https://github.com/GNS-Science/nzshm-model", rev = "pre-release"}
[tool.poetry.extras]
test = [
"pytest",
"black",
"isort",
"mypy",
"flake8",
"flake8-docstrings",
"pytest-cov"
]
dev = ["tox", "virtualenv", "pip", "mypy", "isort", "black", "pytest", "flake8", "bump2version"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"