-
Notifications
You must be signed in to change notification settings - Fork 26
/
requirements_bss.txt
52 lines (44 loc) · 1.85 KB
/
requirements_bss.txt
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
# BioSimSpace requirements. These aren't needed by Sire, but allow it to be
# built in a self-consistent way, i.e. so BioSimSpace can be installed on top
# of it. These will be added to the "host" section of Sire's requirements,
# hence Sire will be built in an environment in which they are already
# installed.
# Optional packages: These packages aren't required by BioSimSpace, but are
# commonly installed by users alongside it. Adding them here allows a
# user to create environments with and without these packages installed.
# Both ambertools and gromacs aren't available on Apple M1 or Windows
# We will only require them for Linux (not ARM64) and Apple x86.
ambertools ; sys_platform == "linux" and platform_machine == "x86_64"
ambertools ; sys_platform == "darwin" and platform_machine != "arm64"
gromacs ; sys_platform == "linux" and platform_machine == "x86_64"
gromacs ; sys_platform == "darwin" and platform_machine != "arm64"
# The following are actual BioSimSpace run-time requirements. Please update
# this list as new requirements are added.
configargparse
ipywidgets<8
lomap2
nglview
openff-interchange-base
openff-toolkit-base
parmed
py3dmol
pydot
pygtail
pypdb
pyyaml
rdkit
watchdog
# The below are packages that aren't available on all
# platforms/OSs and so need to be conditionally included
alchemlyb<2 ; platform_machine == "x86_64" # Needs pymbar, not on Linux/arm64
alchemlyb<2 ; sys_platform == "darwin"
alchemlyb<2 ; sys_platform == "win32"
kcombu_bss ; platform_machine == "x86_64" # not on Linux/arm64
kcombu_bss ; sys_platform == "darwin"
kcombu_bss ; sys_platform == "win32"
mdtraj ; platform_machine == "x86_64" # not on Linux/arm64
mdtraj ; sys_platform == "darwin"
mdtraj ; sys_platform == "win32"
mdanalysis ; platform_machine == "x86_64" # not on Linux/arm64
mdanalysis ; sys_platform == "darwin"
mdanalysis ; sys_platform == "win32"