-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 713 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='spookynet',
version='1.0',
description=('SpookyNet: Learning force fields with electronic degrees '
'of freedom and nonlocal effects'),
author=('Unke, O. T., Chmiela, S., Gastegger, M., Schütt, K. T.,'
' Sauceda, H. E., & Müller, K. R.'),
url='https://github.com/OUnke/SpookyNet',
packages=find_packages(),
python_requires=">=3.7",
install_requires=[
"ase>=3.22.1",
"numpy>=1.21.6",
"scikit-learn>=1.0.2",
"torch>=1.11.0",
],
license="MIT",
package_data={'spookynet.modules': ['d4data/*.pth']},
)