-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (32 loc) · 993 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
from setuptools import setup, find_packages
setup(
name="tensorpotential",
version="0.4.4",
packages=find_packages(include=["tensorpotential", "tensorpotential.*"]),
url="https://github.com/ICAMS/grace-tensorpotential",
license="Academic Software License (ASL)",
author="Anton Bochkarev, Yury Lysogorskiy",
author_email="[email protected], [email protected]",
description="Graph Atomic Cluster Expansion (GRACE)",
long_description="Graph Atomic Cluster Expansion (GRACE)",
python_requires="<3.12",
install_requires=[
"scipy",
"tensorflow<2.17",
"matscipy",
"numpy",
"sympy",
"pandas<3.0.0",
"ase",
"pyyaml>=6.0.2",
"tqdm",
],
scripts=[
"bin/gracemaker",
"bin/grace_models",
"bin/grace_collect",
"bin/extxyz2df",
],
package_data={"tensorpotential": ["resources/input_template.yaml"]},
include_package_data=True,
)