-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_soc.py
34 lines (29 loc) · 886 Bytes
/
setup_soc.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
#!/usr/bin/env python
import sys
import os
import os.path
from distutils.core import setup, Extension
#sSpiceDir = os.getenv("CSPICE_DIR")
#if sSpiceDir == None:
# raise Exception("""Set the CSPICE_DIR to point to your NAIF c_spice top level
#installation directory. i.e. the one that contains include/ and lib/.""")
# Hacked up version since Dan split up the cspice stuff instead of keeping
# it under one directory.
# Linux setup, may work on windows, who knows
setup(
name="pspice",
version="0.2",
scripts=['scripts/spiceid'],
ext_modules=[
Extension(
"pspice",
["src/pspice.c"],
extra_objects=['/usr/local/lib/cspice.a'],
include_dirs=['/usr/local/include/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/"
)