-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 1 KB
/
setup.py
File metadata and controls
27 lines (23 loc) · 1 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
import os
import io
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='schnarc',
version='0.0.0',
author='Michael Gastegger, Julia Westermayr, Philipp Marquetand',
email='michael.gastegger@tu-berlin.de',
packages=find_packages('src'),
scripts=['src/schnarc/calculators.py', 'src/schnarc/model.py','src/schnarc/nn.py','src/scripts/orca_External','src/schnarc/metrics.py','src/scripts/schnarc_md.py', 'src/scripts/run_schnarc.py', 'src/scripts/setup_schnarc.py', 'src/scripts/transform_prediction_QMout.py', 'src/scripts/countstep.py', 'src/scripts/get_xyzandproperties_deltaE.py', 'src/scripts/QM2output.py', 'src/scripts/write_geoms.py','src/scripts/transform_dataset.py'],
package_dir={'': 'src'},
python_requires='>=3.6',
install_requires=[
"torch>=0.4.1",
"numpy",
"ase>=3.16",
"tensorboardX",
"h5py"
]
)