-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.09 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.09 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
'''
Descripttion:
version:
Author: Yang Zhong & Shixu Liu
Date: 2024-05-16 21:32:35
LastEditors: Yang Zhong
LastEditTime: 2024-05-16 23:41:55
'''
from setuptools import setup, find_packages
setup(
name='HamEPC',
version='0.1',
packages=find_packages(),
install_requires=[
"numpy",
"torch",
"torch_geometric",
"e3nn",
"pymatgen",
"tqdm",
"natsort",
'pyyaml',
'mpi4py'
],
entry_points={
'console_scripts': [
'HamEPC=HamEPC.run_EPC:main'
]
},
author='Yang Zhong & Shixu Liu',
author_email='yzhong@fudan.edu.cn',
description='A machine learning workflow based on HamGNN for calculating the electron-phonon coupling (EPC).',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/QuantumLab-ZY/HamEPC.git',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.9',
)