forked from SINGROUP/dscribe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
96 lines (88 loc) · 3.42 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
import sys
# Check python version
if sys.version_info[:2] < (3, 0):
raise RuntimeError("Python version >= 3.0 required.")
import platform
from distutils.ccompiler import new_compiler
from distutils.sysconfig import customize_compiler
from setuptools import setup, find_packages, Extension
from subprocess import getoutput
def using_clang():
"""Will we be using a clang compiler?
"""
compiler = new_compiler()
customize_compiler(compiler)
compiler_ver = getoutput("{0} -v".format(compiler.compiler[0]))
return 'clang' in compiler_ver
cpp_extra_link_args = []
cpp_extra_compile_args = ['-std=c++11']
# Needed to specify X++ runtime library on OSX. This solution is replicated
# from the setup.py of mdanalysis
if platform.system() == 'Darwin' and using_clang():
cpp_extra_compile_args.append('-stdlib=libc++')
cpp_extra_compile_args.append('-mmacosx-version-min=10.9')
cpp_extra_link_args.append('-stdlib=libc++')
cpp_extra_link_args.append('-mmacosx-version-min=10.7')
extensions = [
# The ACSF C++ extension, wrapped with cython
Extension(
"dscribe.libacsf.acsfwrapper",
[
"dscribe/libacsf/acsfwrapper.cpp",
],
language='c++',
include_dirs=["dscribe/libacsf"],
extra_compile_args=cpp_extra_compile_args,
extra_link_args=cpp_extra_link_args,
),
# The MBTR C++ extension, wrapped with cython
Extension(
"dscribe.libmbtr.mbtrwrapper",
[
"dscribe/libmbtr/mbtrwrapper.cpp",
],
language='c++',
include_dirs=["dscribe/libmbtr"],
extra_compile_args=cpp_extra_compile_args,
extra_link_args=cpp_extra_link_args,
),
]
if __name__ == "__main__":
setup(name='dscribe',
version="0.2.8a0",
url="https://singroup.github.io/dscribe/",
description='A Python package for creating feature transformations in applications of machine learning to materials science.',
long_description='A Python package for creating feature transformations in applications of machine learning to materials science.',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'ase',
'future',
'scikit-learn',
'joblib',
'soaplite==1.0.3',
],
include_package_data=True, # This ensures that files defined in MANIFEST.in are included
ext_modules=extensions,
license="Apache License 2.0",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
keywords='descriptor machine learning atomistic structure materials science',
python_requires='>=3, <4',
)