-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "grandfep"
description = "GCMC/MD with free energy perturbation"
authors = [
{ name = "Chenggong Hui", email = "chenggong.hui@mpinat.mpg.de" }
]
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
dynamic = ["version"] # <- setuptools_scm will fill this field
dependencies = [
'numpy <2.3', # parmed Issue #1386
'scipy',
'pandas',
'openmm',
'openmmtools',
'pymbar >=4, <5', # conda: pymbar-core
'mpi4py',
'parmed',
'mdtraj',
'mdanalysis',
]
[project.optional-dependencies]
dev = [
'ipykernel',
'ipywidgets',
'matplotlib',
'pytest-mpi',
'ghp-import',
'rdkit',
'sphinx',
'sphinx-autodoc-typehints',
'sphinx-mdinclude',
'myst-parser',
# ambertools: install via conda (not on PyPI)
]
[tool.setuptools]
packages = ["grandfep", "grandfep.sampler"]
[tool.setuptools.dynamic]
version = { attr = "grandfep._version.__version__" }