forked from matthewholman/assist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
116 lines (102 loc) · 4.61 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
from codecs import open
import os
import inspect
import sys
from distutils import sysconfig
from distutils.sysconfig import get_python_lib
try:
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as _build_ext
except ImportError:
print("Installing ASSIST requires setuptools. Do 'pip install setuptools'.")
sys.exit(1)
suffix = sysconfig.get_config_var('EXT_SUFFIX')
if suffix is None:
suffix = ".so"
# Try to get git hash
try:
import subprocess
ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii")
ghash_arg = "-DASSISTGITHASH="+ghash
except:
ghash_arg = "-DASSISTGITHASH=c1e6c06db6fdd155e4fe28af9c874e7ffec32916" #GITHASHAUTOUPDATE
class build_ext(_build_ext):
def finalize_options(self):
_build_ext.finalize_options(self)
try:
import rebound
except ImportError:
print("ASSIST did not automatically install REBOUND. Please try first installing REBOUND (https://rebound.readthedocs.org/en/latest/python_quickstart.html")
sys.exit(1)
try:
version = rebound.__version__ # Added in 2.12.1
except AttributeError:
print("ASSIST did not automatically install a recent enough version of REBOUND. Try upgrading REBOUND. See 5.3 in https://rebound.readthedocs.org/en/latest/python_quickstart.html")
sys.exit(1)
rebdir = os.path.dirname(inspect.getfile(rebound))
# get site-packages dir to add to paths in case REBOUND & ASSIST installed simul in tmp dir
rebdirsp = get_python_lib()+'/'#[p for p in sys.path if p.endswith('site-packages')][0]+'/'
self.include_dirs.append(rebdir)
sources = [ 'src/assist.c', 'src/spk.c', 'src/planets.c'],
self.library_dirs.append(rebdir+'/../')
self.library_dirs.append(rebdirsp)
for ext in self.extensions:
ext.runtime_library_dirs.append(rebdir+'/../')
ext.extra_link_args.append('-Wl,-rpath,'+rebdir+'/../')
ext.runtime_library_dirs.append(rebdirsp)
ext.extra_link_args.append('-Wl,-rpath,'+rebdirsp)
from distutils.version import LooseVersion
extra_link_args=[]
if sys.platform == 'darwin':
from distutils import sysconfig
vars = sysconfig.get_config_vars()
vars['LDSHARED'] = vars['LDSHARED'].replace('-bundle', '-shared')
extra_link_args.append('-Wl,-install_name,@rpath/libassist'+suffix)
libassistmodule = Extension('libassist',
sources = [ 'src/assist.c','src/spk.c', 'src/planets.c'],
include_dirs = ['src'],
library_dirs = [],
runtime_library_dirs = ["."],
libraries=['rebound'+suffix[:suffix.rfind('.')]],
define_macros=[ ('LIBASSIST', None) ],
extra_compile_args=['-fstrict-aliasing', '-O3','-std=c99', '-fPIC', '-Wpointer-arith', ghash_arg],
extra_link_args=extra_link_args,
)
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name='assist',
version='1.0.1b6',
description='A library high accuracy ephemeris in REBOUND',
long_description=long_description,
url='https://github.com/matthewholman/assist',
author='Matthew Holman',
author_email='[email protected]',
license='GPL',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Scientific/Engineering :: Astronomy',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
],
keywords='astronomy astrophysics nbody integrator',
packages=['assist'],
package_data = {'assist':['assist.h']},
cmdclass={'build_ext':build_ext},
setup_requires=['rebound>=3.10.0', 'numpy'],
install_requires=['rebound>=3.10.0', 'numpy'],
tests_require=["numpy","matplotlib"],
test_suite="assist.test",
ext_modules = [libassistmodule],
zip_safe=False)