File: setup.py

package info (click to toggle)
pybdsf 1.13.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,160 kB
  • sloc: fortran: 40,850; python: 14,894; ansic: 4,347; cpp: 1,586; makefile: 131; sh: 46
file content (16 lines) | stat: -rw-r--r-- 417 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python
from numpy.distutils.core import setup, Extension
import glob,sys

sources=glob.glob('Src/*.c')

setup (name = "natgrid",
       version='1.0',
       description = "natgrid",
       url = "http://cdat.sf.net",
       packages = [''],
       package_dir = {'': 'Lib'},
       include_dirs = ['Include',],
       ext_modules = [Extension('natgridmodule', sources),
                     ]
      )