-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
51 lines (47 loc) · 1000 Bytes
/
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
44
45
46
47
48
49
50
51
import io
import os
from setuptools import (
setup,
find_packages,
)
def read(
fname,
):
with io.open(
os.path.join(
os.path.dirname(__file__),
fname,
),
encoding="utf-8",
) as f:
return f.read()
setup(
name="schnetpack-gschnet",
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"schnetpack_gschnet": ["configs/**/*.yaml"]},
version="1.1.0",
author="Niklas Gebauer",
scripts=[
"src/scripts/gschnet_train",
"src/scripts/gschnet_generate",
],
include_package_data=True,
install_requires=[
"schnetpack>=2.0.3",
"torch>=1.9",
"pytorch_lightning>=2.0",
"hydra-core>=1.1.0",
"hydra-colorlog>=1.1.0",
"numpy",
"ase>=3.21",
"rdkit>=2023.09",
"torchmetrics",
"h5py",
"tqdm",
"pyyaml",
"tensorboard",
"pre-commit",
"black",
],
)