-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (41 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
[project]
name = "prepmd"
version = "1.0"
authors = [{name = "Rob Welch", email = "robert.welch@stfc.ac.uk"}]
description = "Automatically prepare pdb/mmCif structures for molecular dynamics simulations"
readme = "README.md"
license = "AGPL-3.0-or-later"
dependencies = [
"requests",
"openmm",
"pdbfixer",
# "modeller",
"biopython",
"pdb2pqr",
"mdanalysis",
"rdkit",
"openmmforcefields",
# "openff-toolkit",
# "requests",
# "openmm==8.2.0",
# "pdbfixer==1.11",
#"gemmi==0.7.1",
# "modeller==10.7",
# "biopython==1.85",
]
[project.optional-dependencies]
docs = [
"sphinx>=9,<10",
"nbsphinx>=0.9,<1.0",
"sphinx_rtd_theme>=3,<3.2",
"sphinx_copybutton>=0.5,<1.0",
"sphinxcontrib-contentui>=0.2,<1.0",
"sphinxcontrib-details-directive>=0.1,<1.0",
"furo>=2025.0,<2026.0",
"markupsafe>=3.0,<4.0",
"myst-parser"
]
[project.scripts]
prepmd = "prepmd.prep:entry_point"
runmd = "prepmd.run:entry_point"
prep-license = "prepmd.add_modeller_license:entry_point"