-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 726 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (18 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import os
from numpy.distutils.core import setup, Extension
fill_msg_grid = Extension(name = 'brushcutter.fill_msg_grid',
sources = ['brushcutter/f90/fill_msg_grid.f90'])
mod_drown_sosie = Extension(name = 'brushcutter.mod_drown_sosie',
sources = ['brushcutter/f90/mod_drown_sosie.f90'])
setup(
name = "brushcutter",
version = "1.0",
author = "Raphael Dussin",
author_email = "[email protected]",
description = ("A package to create boundary conditions for MOM6 " ),
license = "GPLv3",
keywords = "ocean boundary conditions",
url = "",
packages=['brushcutter'],
ext_modules = [fill_msg_grid,mod_drown_sosie]
)