forked from OGGM/oggm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
100 lines (89 loc) · 2.95 KB
/
Copy pathsetup.py
File metadata and controls
100 lines (89 loc) · 2.95 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
"""Setup file for the Salem package.
Adapted from the Python Packaging Authority template."""
from setuptools import setup, find_packages # Always prefer setuptools
import versioneer
DISTNAME = 'oggm'
LICENSE = 'GPLv3+'
AUTHOR = 'oggm Developers'
AUTHOR_EMAIL = 'fabien.maussion@uibk.ac.at'
URL = 'http://oggm.org'
CLASSIFIERS = [
# How mature is this project? Common values are
# 3 - Alpha 4 - Beta 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License ' +
'v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
DESCRIPTION = 'Open Global Glacier Model'
LONG_DESCRIPTION = """
**OGGM is a modular open source model for glacier dynamics**
The model accounts for glacier geometry (including contributory branches) and
includes an explicit ice dynamics module. It can simulate past and
future mass-balance, volume and geometry of (almost) any glacier in the world
in a fully automated and extensible workflow. We rely exclusively on publicly
available data for calibration and validation.
Links
-----
- Project website: http://oggm.org
- HTML documentation: http://docs.oggm.org
- Source code: http://github.com/oggm/oggm
"""
req_packages = ['numpy',
'scipy',
'pyproj',
'pandas',
'GDAL',
'geopandas',
'fiona',
'matplotlib>=2.0.0',
'scikit-image',
'Pillow',
'joblib',
'netCDF4',
'shapely',
'rasterio',
'configobj',
'pytest',
'xarray',
'progressbar2',
'boto3',
'requests',
'salem']
setup(
# Project info
name=DISTNAME,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
# The project's main homepage.
url=URL,
# Author details
author=AUTHOR,
author_email=AUTHOR_EMAIL,
# License
license=LICENSE,
classifiers=CLASSIFIERS,
# What does your project relate to?
keywords=['geosciences', 'glaciers', 'climate', 'gis'],
# We are a python 3 only shop
python_requires='>=3.5',
# Find packages automatically
packages=find_packages(exclude=['docs']),
# Install dependencies
install_requires=req_packages,
# additional groups of dependencies here (e.g. development dependencies).
extras_require={},
# data files that need to be installed
package_data={'oggm': ['params.cfg']},
# Old
data_files=[],
# Executable scripts
entry_points={},
)