-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (50 loc) · 1.25 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import re
from setuptools import find_packages, setup
with open("lcaonet/__init__.py", encoding="utf-8") as fd:
for line in fd.readlines():
m = re.search('__version__ = "(.*)"', line)
if m:
version = m.group(1)
break
install_requires = [
"numpy==1.*",
"scipy==1.*",
"sympy==1.*",
"ase==3.*",
"torch==2.*",
"torch_geometric",
"torch_scatter",
"torch_sparse",
]
test_requires = [
"pytest",
"pytest-cov",
]
dev_requires = test_requires + [
"pre-commit",
"black",
]
setup(
name="lcaonet",
version=version,
description="LCAONet - MPNN including orbital interaction, physically motivatied by the LCAO method.",
author="Kento Nishio",
author_email="[email protected]",
url="https://github.com/nmdl-mizo/lcaonet",
keywords=[
"deep-learning",
"pytorch",
"graph-neural-networks",
"graph-convolutional-neural-networks",
"materials-informatics",
"machine-learning-interatomic-potential",
],
python_requires=">=3.8",
install_requires=install_requires,
extras_require={
"test": test_requires,
"dev": dev_requires,
},
packages=find_packages(),
include_package_data=True,
)