-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (47 loc) · 1.18 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
[tool.poetry]
name = "pheval_exomiser"
version = "0.2.7"
description = ""
authors = ["Yasemin Bridges <[email protected]>",
"Julius Jacobsen <[email protected]>",
"Nico Matentzoglu <[email protected]>",
"Vinícius de Souza <[email protected]>"]
readme = "README.md"
packages = [{ include = "pheval_exomiser", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.9,<4.0.0"
click = "^8.1.3"
pandas = "^1.5.2"
phenopackets = "^2.0.2"
google = "^3.0.0"
pyaml = "^21.10.1"
oaklib = "^0.5.12"
docker = "^6.0.1"
pydantic = "^2.7.1"
numpy = "<2"
pheval = "^0.4.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pylint = "^2.15.6"
pycodestyle = "^2.10.0"
coverage = "^6.5.0"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.poetry.scripts]
pheval-exomiser = "pheval_exomiser.cli:main"
[tool.poetry.plugins."pheval.plugins"]
exomiser = "pheval_exomiser.runner:ExomiserPhEvalRunner"
[tool.black]
line-length = 100
target-version = ["py39", "py310"]
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 100
include_trailing_comma = true
reverse_relative = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"