-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
71 lines (56 loc) · 1.62 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
[tool.poetry]
name = "linkml-map"
version = "0.0.0"
description = "a framework for specifying and executing mappings between data models"
authors = ["cmungall <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
linkml-runtime = ">=1.7.2"
asteval = "^0.9.29"
deepdiff = "^6.7.1"
pydantic = ">=2.0.0"
ucumvert = "^0.1.1"
jupyter = "^1.0.0"
linkml-model = "^1.8.0"
[tool.poetry.dev-dependencies]
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
linkml = ">=1.7.0"
mkdocs-mermaid2-plugin = "^0.6.0"
mkdocstrings = {extras = ["crystal", "python"], version = "*"}
mknotebooks = "^0.8.0"
mkdocs-windmill = "*"
tox = "*"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.poetry.scripts]
linkml-map = "linkml_map.cli.cli:main"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
linkml = "^1.6.7"
[tool.poetry.group.units.dependencies]
pint = "^0.23"
[tool.poetry.group.graphviz.dependencies]
graphviz = "^0.20.1"
[tool.poetry.group.duckdb.dependencies]
duckdb = "^0.10.1"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311"]
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
reverse_relative = true
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
[tool.codespell]
skip = '.git,*.pdf,*.svg,go.sum,*.lock'
check-hidden = true
ignore-regex = '(^\s*"image/\S+": ".*|\b(KEGG.BRITE|mor.nlm.nih.gov)\b)'
ignore-words-list = 'infarction,amination,assertIn,brite,ehr,mor,brite,nin,mirgate'