forked from icepack/icepack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 991 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
# Copyright (C) 2017-2018 by Daniel Shapero <[email protected]>
#
# This file is part of icepack.
#
# icepack is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# The full text of the license can be found in the file LICENSE in the
# icepack source directory or at <http://www.gnu.org/licenses/>.
from glob import glob
from os.path import basename, splitext
from setuptools import setup, find_packages
setup(
name='icepack',
version='0.0.3',
license='GPL v3',
description='ice sheet flow modelling with the finite element method',
author='Daniel Shapero',
url='https://github.com/icepack/icepack',
packages=find_packages(exclude=['doc', 'test']),
install_requires=['firedrake', 'numpy', 'scipy', 'matplotlib', 'rasterio',
'geojson', 'pooch', 'pygmsh']
)