forked from libAtoms/workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 647 Bytes
/
Copy pathsetup.py
File metadata and controls
17 lines (16 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import setuptools
setuptools.setup(
name="wfl",
version="0.1.0b",
packages=setuptools.find_packages(exclude=["tests"]),
install_requires=["click>=7.0", "numpy", "ase", "pyyaml", "spglib", "docstring_parser",
"expyre-wfl @ https://github.com/libAtoms/ExPyRe/tarball/main",
"universalSOAP @ https://github.com/libAtoms/universalSOAP/tarball/main"],
entry_points="""
[console_scripts]
wfl=wfl.cli.cli:cli
gap_rss_iter_fit=wfl.cli.gap_rss_iter_fit:cli
dft_convergence_test=wfl.cli.dft_convergence_test:cli
reactions_iter_fit=wfl.cli.reactions_iter_fit:cli
"""
)