-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
88 lines (76 loc) · 2.39 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
[tool.poetry]
name = "SRI_Testing"
version = "3.0.0"
description = "One Hop TRAPI mediated semantics-driven tests for testing Translator TRAPI Components (KPs and ARAs)"
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/SRI_testing"
documentation = "https://github.com/TranslatorSRI/SRI_testing/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.10"
]
packages = [
{include = "sri_testing"}
]
include = [
{ path = "tests" }
]
[tool.poetry.dependencies]
python = "^3.9"
pytest = "^7.2.2"
python-dateutil = "^2.8.2"
pytest-asyncio = "^0.19.0"
pytest-harvest = "^1.10.4"
httpx = "^0.23.0"
orjson = "3.8.10"
aiofiles = "^22.1.0"
pymongo = "^4.2.0"
fastapi = ">=0.68.0,<0.69.0"
pydantic = ">=1.8.0,<2.0.0"
uvicorn = ">=0.15.0,<0.16.0"
# reasoner-validator should pull in many dependencies
# also used by SRI Testing, including BMT (which adds some more)
#reasoner-validator = { git = "https://github.com/NCATSTranslator/reasoner-validator.git", rev = "5d356db" }
reasoner-validator = "^3.9.4"
# [tool.poetry.group.dev.dependencies]
[tool.poetry.urls]
"Change Log" = "https://github.com/TranslatorSRI/SRI_testing/blob/master/CHANGELOG.md"
"Bug Tracker" = "https://github.com/TranslatorSRI/SRI_testing/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.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"