-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
93 lines (80 loc) · 2.55 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "graph-validation-test-runners"
version = "0.1.5"
description = "Validation of Translator Knowledge Graphs - TRAPI, Biolink Model and One Hop navigation"
authors = [
"Richard Bruskiewich <[email protected]>",
"Chris Bizon <bizon.renci.org>",
"Tim Putnam <tim@tislab>"
]
maintainers = ["Richard Bruskiewich <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/TranslatorSRI"
repository = "https://github.com/TranslatorSRI/graph-validation-test-runners"
documentation = "https://github.com/TranslatorSRI/graph-validation-test-runners/blob/main/README.md"
keywords = [
"NCATS",
"Biomedical Data Translator",
"Translator",
"ReasonerAPI",
"TRAPI",
"validation",
"Biolink Model"
]
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
packages = [
{include = "graph_validation_tests"},
{include = "one_hop_test_runner"},
{include = "standards_validation_test_runner"}
]
include = [
{ path = "tests" }
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
deepdiff = "^7.0.1"
fastapi = "*"
httpx = "^0.27.0"
tqdm = "^4.66.2"
requests = "^2.31.0"
matplotlib = "^3.8.3"
reasoner-validator = "^4.2.5"
translator-testing-model = "^0.3.1"
[tool.poetry.group.dev.dependencies]
setuptools = "^69.5.1"
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.23.3"
[tool.poetry.urls]
"Change Log" = "https://github.com/TranslatorSRI/graph-validation-test-runners/blob/master/CHANGELOG.md"
"Bug Tracker" = "https://github.com/TranslatorSRI/graph-validation-test-runners/issues"
[tool.poetry.extras]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.poetry.scripts]
standards_validation_test = "standards_validation_test_runner:main"
one_hop_test = "one_hop_test_runner:main"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(message)s"
log_file = "pytest.log"
log_file_level = "INFO"
log_file_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_file_date_format = "%Y-%m-%d %H:%M:%S"