-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.46 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
57
58
59
60
61
62
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "FastOMA"
dynamic = ["version"]
description = "FastOMA - a package to infer orthology information among proteomes"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "Sina Majidian", email = "sina.majidian@gmail.com" },
{ name = "Adrian Altenhoff", email = "adrian.altenhoff@inf.ethz.ch" }
]
dependencies = [
"biopython ~=1.81",
"DendroPy >=4.5,<=4.6.1",
"ete3 ~=3.1",
"lxml >=4.6,<6",
"omamer ~=2.0",
"pyham ~=1.1",
"numpy <2", # temporary fix as pytables does not yet work with numpy 2.0
"pyparsing",
"networkx",
]
[project.optional-dependencies]
nextflow = [
"nextflow"
]
report = [
"papermill",
"jupyter",
"matplotlib",
"seaborn",
]
[project.scripts]
fastoma-batch-roothogs = "FastOMA.batch_roothogs:fastoma_batch_roothogs"
fastoma-check-input = "FastOMA.check_input:fastoma_check_input"
fastoma-collect-subhogs = "FastOMA.collect_subhogs:fastoma_collect_subhogs"
fastoma-infer-roothogs = "FastOMA.infer_roothogs:fastoma_infer_roothogs"
fastoma-infer-subhogs = "FastOMA.infer_subhogs:fastoma_infer_subhogs"
fastoma-helper = "FastOMA.helper_scripts:main"
[project.urls]
Homepage = "https://github.com/DessimozLab/FastOMA"
[tool.hatch.version]
path = "FastOMA/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/FastOMA",
]
[tool.hatch.envs.default]
features = [
"report",
]