-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
46 lines (40 loc) · 973 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "phenopy"
version = "0.6.0"
description = "Phenotype comparison scoring by semantic similarity."
authors = [
"Kevin Arvai",
"Kyle Retterer",
"Carlos Borroto <cborroto@genedx.com>",
"Vlad Gainullin",
"Vincent Ustach <vustach@genedx.com>",
"Stephen McGee <smcgee@genedx.com>"
]
readme = "README.md"
license = ""
[tool.poetry.scripts]
phenopy = "phenopy.__main__:main"
[tool.poetry.urls]
homepage = "https://github.com/GeneDx/phenopy"
"Bug Tracker" = "https://github.com/GeneDx/phenopy/issues"
[tool.poetry.dependencies]
python = "^3.9"
fire = "^0.5.0"
gensim = "^4.3.0"
networkx = "2.6.3"
numpy = "^1.21.1"
obonet = "^1.0.0"
pandas = "^1.0.0"
scipy = "^1.6.1"
requests = "^2.31.0"
pytest = "^7.3.1"
[tool.poetry.dev-dependencies]
pre-commit = "^2.21.0"
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
ruff = "^0.0.264"
[tool.ruff]
line-length = 88