-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
43 lines (42 loc) · 1.33 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="mlff",
version="0.3.0",
description="Build Neural Networks for Force Fields with JAX",
python_requires=">=3.9",
packages=find_packages(),
install_requires=[
"numpy",
# "jax == 0.4.8",
"flax",
"jaxopt",
"jraph",
"optax",
"orbax-checkpoint == 0.5.23",
"portpicker",
# 'tensorflow',
"scikit-learn",
"ase",
"tqdm",
"wandb",
"pyyaml",
"pytest",
"h5py",
],
include_package_data=True,
package_data={"": ["sph_ops/cgmatrix.npz",
"sph_ops/u_matrix.pickle"]},
entry_points={
"console_scripts": [
"evaluate=mlff.cAPI.mlff_eval:evaluate",
"train=mlff.cAPI.mlff_train:train",
"run_md=mlff.cAPI.mlff_md:run_md",
"run_relaxation=mlff.cAPI.mlff_structure_relaxation:run_relaxation",
"analyse_md=mlff.cAPI.mlff_analyse:analyse_md",
"train_so3krates=mlff.cAPI.mlff_train_so3krates:train_so3krates",
"train_so3kratACE=mlff.cAPI.mlff_train_so3kratace:train_so3kratace",
"trajectory_to_xyz=mlff.cAPI.mlff_postprocessing:trajectory_to_xyz",
"to_mlff_input=mlff.cAPI.mlff_input_processing:to_mlff_input",
],
},
)