-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (29 loc) · 894 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
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages, Extension
from Cython.Build import cythonize
import numpy as np
from Hime.version import version
setup(
name='VIC_Hime',
version=version,
description='VIC hydrological model project manager',
url='https://github.com/Sibada/VIC_Hime',
long_description="An program with input file creating, routing, auto-calibrate and GUI to make VIC used easier.",
author='Sibada',
maintainer='Zhong Ruida',
maintainer_email='[email protected]',
license='GPL3.0',
packages=find_packages(),
package_data={
'Hime': [join('templates', '*.template')]
},
install_requires=[
'numpy', 'pandas'
],
ext_modules=[
Extension("Hime.lib.idw", ["Hime/lib/idw.pyx"]),
],
include_dirs=[np.get_include()]
)