forked from atomistic-machine-learning/SchNOrb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 891 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
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='SchNOrb',
version='0.1',
author="Kristof T. Schuett, Michael Gastegger, Reinhard Maurer",
url="https://github.com/atomistic-machine-learning/SchNOrb",
packages=find_packages('src'),
package_dir={'': 'src'},
python_requires=">=3.8",
install_requires=[
"torch>=1.1",
"numpy",
"schnetpack>=0.3",
"spherical_functions",
"tqdm",
"apsw"
],
scripts=[
"src/scripts/run_schnorb.py",
"src/scripts/extract_data.py",
],
description='Unifying machine learning and quantum chemistry with a deep neural network for molecular wavefunctions',
long_description=read('README.md')
)