-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (21 loc) · 938 Bytes
/
setup.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
#!/usr/bin/env python
import os
from numpy.distutils.core import setup, Extension
ext = Extension(name='read_dat', sources = ['ifis_tools/read_dat.f90'],
extra_compile_args = ['-std=gnu99'])
#os.system('jupytext --set-formats jupyter_scripts//ipynb,ifis_tools//py --sync jupyter_scripts/*.ipynb')
setup(
name='ifis_tools',
version='0.5.0',
author='Nicolas Velasquez G',
author_email='[email protected]',
packages=['ifis_tools'],
package_data={'ifis_tools':['evap.mon','60XBaseGlobal.gbl','254BaseGlobal.gbl','190BaseGlobal.gbl',
'BaseInitial.dbc','BaseRun.sh','ControlPoints.sav','BaseInitial_link.dbc',
'read_dat.so','XXXBaseGlobal.gbl']},
url='https://github.com/nicolas998/ifis_tools.git',
license='LICENSE.txt',
description='Watershed Modelling Framework',
long_description=open('README.md').read(),
ext_modules=[ext,]
)