-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "moducomp"
authors = [{ name = "Juan C. Villada", email = "jvillada@lbl.gov" }]
readme = "README.md"
license = { file = "LICENSE.txt" }
keywords = ["bioinformatics", "microbiome", "metabolic", "kegg", "genomics"]
requires-python = ">=3.9,<3.12"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"typer>=0.9.1,<0.10.0",
"pandas>=1.5,<2.3",
"click~=8.0.0",
"eggnog-mapper>=2.1.9,<2.2.0",
"kegg-pathways-completeness",
]
dynamic = ["version", "description"]
[project.scripts]
moducomp = "moducomp.moducomp:app"
[project.urls]
Homepage = "https://github.com/NeLLi-team/moducomp"
Documentation = "https://github.com/NeLLi-team/moducomp#readme"
Repository = "https://github.com/NeLLi-team/moducomp"
"Bug Tracker" = "https://github.com/NeLLi-team/moducomp/issues"
[tool.pixi.workspace]
channels = ["conda-forge", "bioconda"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
moducomp = { path = ".", editable = true }
[tool.pixi.dependencies]
python = ">=3.9,<3.12"
pandas = ">=1.5,<2.3"
typer = ">=0.9.1,<0.10.0"
click = "~=8.0.0"
eggnog-mapper = ">=2.1.9,<2.2.0"
kegg-pathways-completeness = "*"
[tool.pixi.tasks]
moducomp = "python -m moducomp"
test = "python -m moducomp test --ncpus 2 --calculate-complementarity 2"
setup = "python -m moducomp setup"
pipeline = "python -m moducomp pipeline --help"
analyze_ko_matrix = "python -m moducomp analyze-ko-matrix --help"