-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (38 loc) · 904 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
41
42
43
44
45
46
[tool.poetry]
name = "phenotype2phenopacket"
version = "0.6.11"
description = ""
authors = ["Yasemin Bridges <[email protected]>"]
readme = "README.md"
packages = [{ include = "phenotype2phenopacket", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
pandas = "^2.0.0"
phenopackets = "^2.0.2"
polars = "^0.19"
oaklib = "^0.5.1"
click = "^8.1.3"
pheval = "^0.4.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
coverage = "^6.5.0"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
[tool.poetry.scripts]
p2p = "phenotype2phenopacket.cli:main"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[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"