-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpixi.toml
More file actions
200 lines (172 loc) · 4.57 KB
/
pixi.toml
File metadata and controls
200 lines (172 loc) · 4.57 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
[workspace]
name = "sire"
channels = ["conda-forge", "openbiosim/label/dev"]
platforms = ["linux-64", "linux-aarch64", "osx-arm64", "win-64"]
# All core dependencies needed to build and run sire.
# The generate_recipe.py script categorises these into build/host/run
# sections when generating the rattler-build recipe.
[dependencies]
python = "*"
cmake = ">=3.30.0"
git = "*"
pybind11 = "*"
gsl = "*"
lazy_import = "*"
libboost-devel = "*"
libboost-python-devel = "*"
libcblas = "*"
libnetcdf = "*"
librdkit-dev = ">2024.09.6"
openmm = ">=8.1"
pandas = "*"
qt-main = "*"
rich = "*"
tbb = "*"
tbb-devel = "*"
# Unix build tools
[target.linux-64.dependencies]
make = "*"
libtool = "*"
sysroot_linux-64 = "==2.17"
kartograf = ">=1.0.0"
gemmi = ">=0.6.4,<0.7.0"
# Host dependencies for local source builds (not used by generate_recipe.py)
[target.linux-64.host-dependencies]
sysroot_linux-64 = ">=2.34"
c-compiler = "*"
cxx-compiler = "*"
[target.linux-aarch64.dependencies]
make = "*"
libtool = "*"
kartograf = ">=1.0.0"
[target.linux-aarch64.host-dependencies]
c-compiler = "*"
cxx-compiler = "*"
[target.osx-arm64.dependencies]
make = "*"
libtool = "*"
kartograf = ">=1.0.0"
gemmi = ">=0.6.4,<0.7.0"
[target.osx-arm64.host-dependencies]
c-compiler = "*"
cxx-compiler = "*"
[target.win-64.dependencies]
gemmi = ">=0.6.4,<0.7.0"
[target.win-64.host-dependencies]
c-compiler = "*"
cxx-compiler = "*"
# =============================================================================
# OBS (OpenBioSim) feature
# Dependencies for downstream OpenBioSim packages (biosimspace, ghostly, loch, somd2).
# =============================================================================
[feature.obs.dependencies]
# biosimspace
configargparse = "*"
ipywidgets = "*"
kcombu_bss = "*"
lomap2 = "*"
nglview = "*"
openff-interchange-base = "*"
openff-toolkit-base = "*"
parmed = "*"
py3dmol = "*"
pydot = "*"
pygtail = "*"
pyyaml = "*"
# somd2
loguru = "*"
numba = "*"
nvidia-ml-py = "*"
[feature.obs.target.linux-64.dependencies]
# biosimspace
ambertools = ">=22"
gromacs = "*"
alchemlyb = "*"
mdtraj = "*"
mdanalysis = "*"
openff-nagl = "*"
# loch
pyopencl = "*"
pycuda = "*"
[feature.obs.target.linux-aarch64.dependencies]
gromacs = "*"
openff-nagl = "*"
# ambertools, alchemlyb, mdtraj, mdanalysis not available on linux-aarch64
[feature.obs.target.osx-arm64.dependencies]
ambertools = ">=22"
# gromacs not available on osx-arm64
alchemlyb = "*"
mdtraj = "*"
mdanalysis = "*"
openff-nagl = "*"
# loch
pyopencl = "*"
[feature.obs.target.win-64.dependencies]
# ambertools and gromacs not available on Windows
alchemlyb = "*"
mdtraj = "*"
mdanalysis = "*"
# loch
pycuda = "*"
pyopencl = "*"
# =============================================================================
# EMLE (emle-engine) feature
# =============================================================================
[feature.emle.dependencies]
ase = "*"
loguru = "*"
pygit2 = "*"
pyyaml = "*"
[feature.emle.target.linux-64.dependencies]
ambertools = ">=22"
deepmd-kit = "*"
nnpops = "*"
pytorch = "*"
[feature.emle.target.linux-aarch64.dependencies]
pytorch = "*"
# ambertools, deepmd-kit, nnpops not available on linux-aarch64
[feature.emle.target.osx-arm64.dependencies]
ambertools = ">=22"
deepmd-kit = "*"
nnpops = "*"
pytorch = "*"
torchani = "*"
xtb-python = "*"
# EMLE has no Windows-specific deps (ambertools, pytorch etc. excluded on Windows)
# =============================================================================
# Test feature
# =============================================================================
[feature.test.dependencies]
black = "*"
pytest = "*"
rdkit = ">=2023.0.0"
[feature.test.target.linux-64.dependencies]
kartograf = ">=1.0.0"
gemmi = ">=0.6.4,<0.7.0"
[feature.test.target.linux-aarch64.dependencies]
kartograf = ">=1.0.0"
[feature.test.target.osx-arm64.dependencies]
kartograf = ">=1.0.0"
gemmi = ">=0.6.4,<0.7.0"
[feature.test.target.win-64.dependencies]
gemmi = ">=0.6.4,<0.7.0"
# kartograf excluded from Windows test deps
# =============================================================================
# Lint feature (local development only, not included in recipes)
# =============================================================================
[feature.lint.dependencies]
pre-commit = "*"
rattler-build = "*"
ruff = "*"
# =============================================================================
# Environments
# =============================================================================
[environments]
default = []
obs = ["obs"]
emle = ["emle"]
full = ["obs", "emle"]
test = ["test"]
dev = ["obs", "emle", "test", "lint"]
[activation]
scripts = ["pixi.sh"]