File: setup.py

package info (click to toggle)
wsclean 3.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,296 kB
  • sloc: cpp: 129,246; python: 22,066; sh: 360; ansic: 230; makefile: 185
file content (30 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (2)
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
from distutils.core import Extension, setup

# define the extension module
_wsclean = Extension(
    "_wsclean",
    sources=["_wsclean.c"],
    libraries=[
        "../build/wsclean-shared",
        "casa_ms",
        "casa_tables",
        "casa_casa",
        "casa_measures",
        "casa_fits",
        "fftw3",
        "fftw3_threads",
        "boost_date_time",
        "boost_system",
        "boost_thread",
        "boost_filesystem",
        "boost_program_options",
        "cfitsio",
        "gsl",
        "/usr/lib/x86_64-linux-gnu/hdf5/serial/hdf5",
        "/usr/lib/x86_64-linux-gnu/hdf5/serial/hdf5_cpp",
        "/home/anoko/Software/LOFARBeam-install/lib/stationresponse",
    ],
)

# run the setup
setup(ext_modules=[_wsclean])