-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.03 KB
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
[project]
name = "edgehog"
version = "0.1.10"
description = "Infering ancestral synteny with hierarchical orthologous groups"
authors = [
{name="Charles Bernard", email="charles.bernard@unil.ch"},
{name="Adrian Altenhoff", email="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",
]
requires-python = ">=3.9,<3.13"
dependencies = [
"numpy>=1.23.0,<3",
"pandas>1.3.0,<3",
"networkx>=2.8,<4",
"pyham>=1.2,<2",
"ete3>=3.1.3,<4",
]
[project.optional-dependencies]
oma = [
"pyoma>=0.13.3,<1",
"tables (<=3.10.0) ; python_version < '3.11'",
"tables (>=3.10) ; python_version >= '3.11'",
]
[project.scripts]
edgehog = 'edgehog.edgehog:main'
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"