forked from aertslab/arboreto
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (66 loc) · 2.34 KB
/
pyproject.toml
File metadata and controls
84 lines (66 loc) · 2.34 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "arboreto"
version = "0.1.7"
description = "Scalable gene regulatory network inference using tree-based ensemble regressors with p-values"
readme = "README.rst"
requires-python = ">=3.8"
authors = [
{ name = "Thomas Moerman", email = "thomas.moerman@gmail.com" },
{ name="Anne Hartebrodt", email="anne.hartebrodt@fau.de" },
{ name="Fabian Woller", email="fabian.woller@fau.de" },
{ name="Paul Martini", email="paul.martini@fau.de" },
]
license = { text = "BSD 3-Clause License" }
urls = {Homepage = "https://github.com/bionetslab/arboreto_fdr"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
# All scientific/binary-heavy dependencies (which frequently cause build errors)
# have been moved to [tool.pixi.dependencies] to ensure they install via Conda binaries.
dependencies = []
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.dependencies]
python = "*" # Ensure Python is defined as a dependency
dask = "*"
distributed = "*"
numpy = ">=1.16.5" # Retaining your version constraint
pandas = "*"
scikit-learn = "*"
scipy = "*"
scikit-learn-extra = "*"
pyarrow = "*"
numba = "*"
[tool.pixi.pypi-dependencies]
# This section remains for pure-Python packages not available or preferred from Conda,
# but it currently only contains the local editable install.
arboreto = { path = ".", editable = true }
[tool.pixi.environments]
kernel = ["kernel"]
# --- KERNEL ENVIRONMENT ---
# Defines a new, separate environment named 'kernel'.
[tool.pixi.feature.kernel.dependencies]
python = "*"
dask = "*"
distributed = "*"
numpy = ">=1.16.5" # Retaining your version constraint
pandas = "*"
scikit-learn = "*"
scipy = "*"
scikit-learn-extra = "*"
pyarrow = "*"
ipykernel = "*"
numba = "*"
[tool.pixi.feature.kernel.pypi-dependencies]
# This section remains for pure-Python packages not available or preferred from Conda,
# but it currently only contains the local editable install.
arboreto = { path = ".", editable = true }
[tool.pixi.feature.kernel.tasks]
install-kernel = "python -m ipykernel install --user --name pixi_alternet_new --display-name pixi_alternet_new"
uninstall-kernel = "jupyter kernelspec uninstall pixi_alternet_new"