-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
135 lines (113 loc) · 3.72 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
from distutils.sysconfig import get_config_vars
from pathlib import Path
from setuptools import Extension, find_packages, setup
# remove `-Wstrict-prototypes' that is for C not C++
cfg_vars = get_config_vars()
for key, value in cfg_vars.items():
if type(value) == str and "-Wstrict-prototypes" in value:
cfg_vars[key] = value.replace("-Wstrict-prototypes", "")
class get_pybind11_includes:
"""
Helper class to determine the pybind11 include path
The purpose of this class is to postpone importing pybind11 until it is actually
installed, so that the ``get_include()`` method can be invoked.
see:
https://github.com/pybind/python_example/blob/master/setup.py
https://github.com/pybind/python_example/issues/32
"""
def __str__(self):
import pybind11
return pybind11.get_include()
def get_includes():
return [get_pybind11_includes()]
def get_extra_compile_args():
return ["-std=c++11"]
sym_fn = Extension(
"kliff.descriptors.symmetry_function.sf",
sources=[
"kliff/descriptors/symmetry_function/sym_fn_bind.cpp",
"kliff/descriptors/symmetry_function/sym_fn.cpp",
"kliff/descriptors/symmetry_function/helper.cpp",
],
include_dirs=get_includes(),
extra_compile_args=get_extra_compile_args(),
language="c++",
)
bispectrum = Extension(
"kliff.descriptors.bispectrum.bs",
sources=[
"kliff/descriptors/bispectrum/bispectrum_bind.cpp",
"kliff/descriptors/bispectrum/bispectrum.cpp",
"kliff/descriptors/bispectrum/helper.cpp",
],
include_dirs=get_includes(),
extra_compile_args=get_extra_compile_args(),
language="c++",
)
neighlist = Extension(
"kliff.neighbor.neighlist",
sources=[
"kliff/neighbor/neighbor_list.cpp",
"kliff/neighbor/neighbor_list_bind.cpp",
],
include_dirs=get_includes(),
extra_compile_args=get_extra_compile_args(),
language="c++",
)
def get_version():
fname = Path(__file__).parent.joinpath("kliff", "__init__.py")
with open(fname) as f:
for line in f:
line = line.strip()
if "__version__" in line:
v = line.split("=")[1]
# stripe white space, and ' or " in string
if "'" in v:
version = v.strip("' ")
elif '"' in v:
version = v.strip('" ')
break
return version
def get_readme():
fname = Path(__file__).parent.joinpath("README.md")
with open(fname, "r") as f:
readme = f.read()
return readme
setup(
name="kliff",
version=get_version(),
packages=find_packages(),
ext_modules=[sym_fn, bispectrum, neighlist],
install_requires=["requests", "scipy", "pyyaml", "monty", "loguru"],
extras_require={
"test": [
"pytest",
"pytest-cov",
"kimpy",
"emcee",
"ptemcee @ git+https://github.com/yonatank93/ptemcee.git@enhance_v1.0.0",
"torch",
"numpy",
],
"docs": [
"sphinx",
"furo",
"myst-nb",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"matplotlib",
],
},
entry_points={"console_scripts": ["kliff = kliff.cmdline.cli:main"]},
author="Mingjian Wen",
author_email="wenxx151@gmail.com",
url="https://github.com/openkim/kliff",
description="KLIFF: KIM-based Learning-Integrated Fitting Framework",
long_description=get_readme(),
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: OS Independent",
],
zip_safe=False,
)