-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (63 loc) · 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (63 loc) · 1.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TransforMol"
version = "1.0.0"
description = "A Generative Transformer Model + LLM Agent as an Expert for Molecules"
authors = [{ name = "Rangsiman Ketkaew", email = "rketkaew@ethz.ch" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"ipython",
"numpy",
"rdkit",
"torch",
"mace",
"ase",
"sella",
"pandas",
"scikit-learn",
"openmmforcefields",
"certifi",
"h5py",
"numba",
"torch-geometric",
# torch-cluster, torch-scatter, torch-sparse must be installed separately
# after torch, using the matching wheel index:
# pip install torch-scatter torch-sparse torch-cluster \
# -f https://data.pyg.org/whl/torch-<version>+<cu>.html
"seaborn",
"nglview",
# "pyemma",
"matplotlib",
"mdtraj",
"scipy",
"tqdm",
"ipywidgets",
"py3Dmol",
"langchain",
"langchain-core",
"langchain-anthropic",
"langchain-openai",
"langchain-google-genai",
"faiss-cpu"
]
[project.optional-dependencies]
# These packages are only available via conda-forge, not PyPI.
# Install them with: conda install -c conda-forge openff-toolkit openmoltools openmm-torch=1.4
conda-only = [
# openff-toolkit
# openmoltools
# openmm-torch==1.4
]
[project.urls]
Homepage = "https://github.com/rangsimanketkaew/TransforMol"
[tool.setuptools.packages.find]
where = ["."]