forked from keysongkang/ALmoMD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 828 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 828 Bytes
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
from setuptools import setup, find_packages
setup(
name='ALmoMD',
version='0.2.0',
author='Kisung Kang',
description='Active-learning machine-operated molecular dynamics (ALmoMD) is a Python code package designed for the effective training of machine learned interatomic potential (MLIP) through active learning based on uncertainty evaluation. It also facilitates the implementation of molecular dynamics (MD) using trained MLIPs with uncertainty evaluation.',
packages=find_packages(),
install_requires=[
'nequip >= 0.5.6, < 0.7',
'fhi-vibes',
'numpy',
'scipy',
'ase',
'pandas',
'matplotlib',
'scikit-learn',
'tqdm',
],
entry_points={
'console_scripts': [
'almomd = almd.cli:main'
]
},
)