-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (62 loc) · 1.46 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
[tool.poetry]
name = "grand-challenge-forge"
version = "0.6.1"
description = "Generation of challenge packs"
license = "Apache-2.0"
authors = ["Grand-Challenge support <[email protected]>"]
readme = "README.md"
repository = "https://github.com/DIAGNijmegen/rse-grand-challenge-forge"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Operating System :: POSIX",
]
[tool.poetry.scripts]
grand-challenge-forge = "grand_challenge_forge.cli:cli"
[tool.poetry.dependencies]
python = ">3.10"
jinja2 = "*"
click = "*"
jsonschema = "*"
black = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-xdist = "*"
psutil = "*"
pytest-timeout = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
known_first_party = ["challenge-forge", "tests"]
line_length = 79
[tool.black]
line-length = 79
target-version = ['py311']
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = [
"tests",
]
python_files = "tests.py test_*.py *_tests.py"
addopts = '--strict-markers --showlocals -n auto'
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = py310, py311
[gh-actions]
python =
3.10: py310
3.11: py311
[testenv]
allowlist_externals = poetry
commands =
poetry install -v
poetry run pytest {posargs}
"""