-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
93 lines (82 loc) · 2.85 KB
/
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
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
"""Setup file for the Salem package.
Adapted from the Python Packaging Authority template."""
from setuptools import setup, find_packages # Always prefer setuptools
DISTNAME = 'oggm'
LICENSE = 'BSD-3-Clause'
AUTHOR = 'OGGM Contributors'
AUTHOR_EMAIL = '[email protected]'
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 :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
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',
'pandas',
'matplotlib>=2.0.0',
'shapely',
'requests',
'configobj',
'netcdf4',
'xarray',
]
setup(
# Project info
name=DISTNAME,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
# Version info
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
use_scm_version=True,
# 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.6',
# Find packages automatically
packages=find_packages(exclude=['docs']),
# Include package data
include_package_data=True,
# Install dependencies
install_requires=req_packages,
# additional groups of dependencies here (e.g. development dependencies).
extras_require={},
# Executable scripts
entry_points={
'console_scripts': [
'oggm_prepro = oggm.cli.prepro_levels:main',
'oggm_benchmark = oggm.cli.benchmark:main',
'oggm_netrc_credentials = oggm.cli.netrc_credentials:cli',
],
},
)