-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
172 lines (148 loc) · 4.99 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
"""Setup file for the Dummy-Module package.
Adapted from the Python Packaging Authority template.
"""
from setuptools import setup, find_packages # Always prefer setuptools
from codecs import open # To use a consistent encoding
from os import path, walk
import sys, warnings, importlib, re
MAJOR = 0
MINOR = 0
MICRO = 1
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = ''
DISTNAME = 'oggm-vas'
LICENSE = 'BSD-3-Clause'
AUTHOR = 'Moritz Oberrauch & 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 :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
DESCRIPTION = 'Open Global Glacier Model - VAS package'
LONG_DESCRIPTION = """Open Global Glacier Model - VAS package
"""
# code to extract and write the version copied from pandas
FULLVERSION = VERSION
write_version = True
if not ISRELEASED:
import subprocess
FULLVERSION += '.dev'
pipe = None
for cmd in ['git', 'git.cmd']:
try:
pipe = subprocess.Popen(
[cmd, "describe", "--always", "--match", "v[0-9]*"],
stdout=subprocess.PIPE)
(so, serr) = pipe.communicate()
if pipe.returncode == 0:
break
except:
pass
if pipe is None or pipe.returncode != 0:
# no git, or not in git dir
if path.exists('oggm_vas/version.py'):
warnings.warn("WARNING: Couldn't get git revision, using existing "
"oggm_vas/version.py")
write_version = False
else:
warnings.warn("WARNING: Couldn't get git revision, using generic "
"version string")
else:
# have git, in git dir, but may have used a shallow clone (travis)
rev = so.strip()
# makes distutils blow up on Python 2.7
if sys.version_info[0] >= 3:
rev = rev.decode('ascii')
if not rev.startswith('v') and re.match("[a-zA-Z0-9]{7,9}", rev):
# partial clone, manually construct version string
# this is the format before we started using git-describe
# to get an ordering on dev version strings.
rev = "v%s.dev-%s" % (VERSION, rev)
# Strip leading v from tags format "vx.y.z" to get th version string
FULLVERSION = rev.lstrip('v').replace(VERSION + '-', VERSION + '+')
else:
FULLVERSION += QUALIFIER
def write_version_py(filename=None):
cnt = """\
version = '%s'
short_version = '%s'
isreleased = %s
"""
if not filename:
filename = path.join(path.dirname(__file__), 'oggm_vas',
'version.py')
a = open(filename, 'w')
try:
a.write(cnt % (FULLVERSION, VERSION, ISRELEASED))
finally:
a.close()
if write_version:
write_version_py()
def check_dependencies(package_names):
"""Check if packages can be imported, if not throw a message."""
not_met = []
for n in package_names:
try:
_ = importlib.import_module(n)
except ImportError:
not_met.append(n)
if len(not_met) != 0:
errmsg = "Warning: the following packages could not be found: "
print(errmsg + ', '.join(not_met))
req_packages = ['oggm',
'sklearn',
]
check_dependencies(req_packages)
def file_walk(top, remove=''):
"""
Returns a generator of files from the top of the tree, removing
the given prefix from the root/file result.
"""
top = top.replace('/', path.sep)
remove = remove.replace('/', path.sep)
for root, dirs, files in walk(top):
for file in files:
yield path.join(root, file).replace(remove, '')
setup(
# Project info
name=DISTNAME,
version=FULLVERSION,
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'],
# We are a python 3 only shop
python_requires='>=3.5',
# Find packages automatically
packages=find_packages(exclude=['docs']),
# Decided not to let pip install the dependencies, this is too brutal
install_requires=[],
# additional groups of dependencies here (e.g. development dependencies).
extras_require={},
# data files that need to be installed
package_data={
'oggm_vas': ['data/*'],
},
# Old
data_files=[],
# Executable scripts
entry_points={},
)