-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
69 lines (61 loc) · 1.52 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
[tool.poetry]
name = "monarch-ingest"
version = "0.8.0"
description = ""
authors = [
"The Monarch Initiative <info@monarchinitiative.org>",
"Kevin Schaper <kevinschaper@gmail.com>",
"Victoria Soesanto <victoria.soesanto@cuanschutz.edu>",
"Glass Elsarboukh <g.elsarboukh@gmail.com>",
"Kent Shefchek <kent@tislab.org>",
"Richard Bruskiewich <richard.bruskiewich@delphinai.com>",
]
packages = [
{ include = "monarch_ingest", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.10"
biolink-model = "^4.2.0"
bmt = "^1.0.15"
cat-merge = "0.2.1"
closurizer = "0.5.1"
kghub-downloader = "^0.3.10"
kgx = "^2.4.2"
koza = "^0.6.1"
linkml = "^1.7.8"
linkml-solr = "0.1.6"
multi-indexer = "0.0.5"
# Other Dependencies
botocore = "^1.31"
importlib-metadata = ">=4.6.1"
loguru = "*"
pydantic = "^2.5"
sh = "^1.14.3"
typer = "^0.12"
yamllint = "^1.35.1"
linkml-runtime = "^1.7.5"
# Remove this once cat-merge fixes its pandas dependency
pandas = "2.0.3"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
mkdocs = "^1.4"
mkdocs-material = ">=9.5"
black = "^24.3"
ruff = "*"
[tool.poetry.scripts]
ingest = "monarch_ingest.main:typer_app"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.ruff]
line-length = 120
ignore = [
"F541", # f-strings with no placeholders
]
[tool.ruff.lint.per-file-ignores]
"tests/**.py" = ["F811"] # redefinition of unused imports (mock_koza)