-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (44 loc) · 1.07 KB
/
setup.py
File metadata and controls
45 lines (44 loc) · 1.07 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
from setuptools import find_packages, setup
setup(
name='geom2vec',
version='0.2.0',
description="Geom2Vec (geometry-to-vector) is a framework for compute vector representation of molecular "
"conformations using pretrained graph neural networks (GNNs).",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.10",
install_requires=[
"numpy",
"scipy",
"MDAnalysis",
"mdtraj",
"einops",
"tqdm",
],
extras_require={
"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",
],
},
)