-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (15 loc) · 765 Bytes
/
setup.py
File metadata and controls
17 lines (15 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from numpy.distutils.core import setup, Extension
# interface for Renka's algorithm 772 fortran code
ext = Extension(name = '_stripack',
sources = ['_stripack.pyf','stripack.f90'])
if __name__ == "__main__":
setup(name = 'stripack',
author = "Jeff Whitaker",
author_email = "jeffrey.s.whitaker@noaa.gov",
url = "https://github.com/jswhit/stripack",
download_url = "https://github.com/jswhit/stripack/releases",
version = "1.2",
description = "Python interface to STRIPACK fortran code for triangulation/interpolation on a sphere",
ext_modules = [ext],
packages = ['stripack'],
)