-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
92 lines (82 loc) · 2.36 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
#!/usr/bin/env python
import sys
import os
import os.path
from distutils.core import setup, Extension
sSpiceInc = os.getenv("CSPICE_INC")
if sSpiceInc == None:
raise Exception("""Set the CSPICE_INC to point to your NAIF c_spice top level
include directory. i.e. the one that contains SpiceUsr.h""")
sNatLibDir = os.getenv("INST_NAT_LIB")
if sNatLibDir == None:
raise Exception("Set INST_NAT_LIB to the directory containing libcspice.so")
#sSpiceLib = os.getenv("CSPICE_LIB")
#if sSpiceLib == None:
# raise Exception("""Set the CSPICE_LIB to point to your NAIF c_spice top library
#object. i.e. the cspice.a file.""")
# Correct for another CSW packager error:
if sys.platform.lower().startswith('sunos'):
# Solaris 8 setup, use this since spice is compiled for solaris 8
os.environ['CC'] = '/opt/SUNWspro/bin/cc'
os.environ['LDSHARED'] = '/opt/SUNWspro/bin/cc'
setup(
name="pspice",
version="0.4",
scripts=['scripts/spiceid'],
ext_modules=[
Extension(
"pspice",
["src/pspice.c"],
extra_objects=[sSpiceLib],
include_dirs=[sSpiceInc],
libraries = ["m"],
extra_link_args = ['-G']
)
],
description="Python NAIF c_spice Wrapper",
author="Chris Piker",
author_email="[email protected]",
url="https://saturn.physics.uiowa.edu/svn/util/python/trunk/pspice/"
)
elif sys.platform.lower().startswith('win'):
# Linux setup, may work on windows, who knows
setup(
name="pspice",
version="0.4",
scripts=['scripts/spiceid'],
ext_modules=[
Extension(
"pspice",
["src/pspice.c"],
extra_objects=[sSpiceLib],
include_dirs=[sSpiceInc],
libraries = ["m"],
library_dirs = [ os.path.dirname(sys.executable) ]
)
],
description="Python NAIF c_spice Wrapper",
author="Chris Piker",
author_email="[email protected]",
url="https://saturn.physics.uiowa.edu/svn/util/python/trunk/pspice/"
)
else:
# Linux setup, may work on windows, who knows
setup(
name="pspice",
version="0.4",
scripts=['scripts/spiceid'],
ext_modules=[
Extension(
"pspice",
["src/pspice.c"],
#extra_objects=[sSpiceLib],
include_dirs=[sSpiceInc],
library_dirs = [sNatLibDir],
libraries = ["m", "cspice"]
)
],
description="Python NAIF c_spice Wrapper",
author="Chris Piker",
author_email="[email protected]",
url="https://saturn.physics.uiowa.edu/svn/util/python/trunk/pspice/"
)