-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.05 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geom2vec"
version = "1.0.0"
description = "Geom2Vec (geometry-to-vector) provides pretrained geometric representations for molecular simulations."
readme = "README.md"
authors = [
{ name = "Zihan Pengmei", email = "zpengmei@uchicago.edu" },
{ name = "Spencer Guo", email = "scguo@uchicago.edu" },
{ name = "Chatipat Lorpaiboon", email = "chatipat@uchicago.edu" },
]
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
"MDAnalysis",
"mdtraj",
"einops",
"tqdm",
]
[project.optional-dependencies]
torch = ["torch"]
pyg = ["torch-geometric", "torch-scatter", "torch-cluster"]
optim = ["grokfast_pytorch", "adam-atan2-pytorch"]
pretrain = [
"ase",
"tensorboard",
"pytorch_lightning",
"torch",
"torch-geometric",
"torch-scatter",
"torch-cluster",
]
viz = ["matplotlib"]
[project.urls]
Homepage = "https://github.com/zpengmei/geom2vec"
Issues = "https://github.com/zpengmei/geom2vec/issues"