forked from monarch-initiative/monarch-ingest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 864 Bytes
/
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
[tool.poetry]
name = "monarch-ingest"
version = "0.1.1"
description = ""
authors = [
"Kevin Schaper <kevinschaper@gmail.com>",
"Victoria Soesanto <victoria.soesanto@cuanschutz.edu>",
"Kent Shefchek <kent@tislab.org>",
"The Monarch Initiative <info@monarchinitiative.org>"
]
[tool.poetry.dependencies]
python = "^3.8"
importlib-metadata = "^4.6.1"
koza = "^0.1.11"
biolink_model_pydantic = "^0.1.7"
kghub-downloader = "0.1.14"
kgx = "^1.5.6"
[tool.poetry.dev-dependencies]
autoflake = "^1.4"
flake8 = "^3.9.2"
isort = "^5.9.1"
mkdocs = "^1.2.2"
mkdocs-material = "^7.2.4"
pytest = "^7.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line_length = 90
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 90
multi_line_output = 3
include_trailing_comma = true