-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.toml
More file actions
39 lines (34 loc) · 846 Bytes
/
Copy pathpixi.toml
File metadata and controls
39 lines (34 loc) · 846 Bytes
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
[project]
name = "openmm_fts"
channels = ["conda-forge", "omnia"]
platforms = ["linux-64", "osx-arm64", "osx-64"]
[dependencies]
python = ">=3.8"
numpy = "*"
scipy = "*"
matplotlib = "*"
h5py = "*"
numba = "*"
mdtraj = "*"
openmm = "*"
openmmtools = "*"
mpi4py = "*"
gsd = "*"
[pypi-dependencies]
openmm_fts = { path = ".", editable = true }
openmm_csvr = { git = "https://github.com/cbatton/openmm_csvr.git" }
[environments]
default = { solve-group = "default" }
dev = { features = ["dev"], solve-group = "default" }
[feature.dev.tasks]
fmt = { cmd = "ruff format" }
lint = { cmd = "ruff check --fix" }
types = { cmd = "mypy src/omm_fts" }
test = { cmd = "pytest" }
all = { depends-on = ["fmt", "lint", "types", "test"] }
[feature.dev.dependencies]
pytest = ">=8.3"
pytest-cov = ">=6.0"
ruff = ">=0.11"
mypy = ">=1.15"
pre-commit = ">=4.2"