-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 959 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
[tool.poetry]
name = "edgehog"
version = "0.1.6"
description = "Infering ancestral synteny with hierarchical orthologous groups"
authors = ["Charles Bernard <charles.bernard@unil.ch>",
"Adrian Altenhoff <adrian.altenhoff@inf.ethz.ch>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/DessimozLab/edgehog"
keywords = ["bioinformatics", "synteny", "ancestral gene order"]
classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = ">=1.20.0,<3"
pandas = ">1.3.0,<3.0.0"
networkx = ">=2.8,<4"
pyham = "^1.1.11"
ete3 = "^3.1.2"
pyoma = {version = ">=0.13.3", optional = true}
[tool.poetry.extras]
oma = ["pyoma"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.0"
[tool.poetry.scripts]
edgehog = 'edgehog.edgehog:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"