forked from icepack/icepack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.2 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.2 KB
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
35
36
37
38
39
# Copyright (C) 2017-2021 by Daniel Shapero <shapero@uw.edu>
#
# 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 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"]),
package_data={"icepack": ["registry-nsidc.txt", "registry-outlines.txt"]},
install_requires=[
"numpy",
"scipy",
"matplotlib",
"rasterio>=1.0.26",
"netCDF4",
"geojson",
"shapely",
"pooch>=1.0.0",
"pygmsh<=6.1.1",
"meshio>=3.3.1",
"MeshPy",
"tqdm",
],
extras_require={"doc": ["sphinx", "ipykernel", "nbconvert", "nikola"]},
)