Skip to content

Commit 70f0359

Browse files
committed
v0.3.1
1 parent 3554293 commit 70f0359

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

climata/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.3.0"
1+
VERSION = "0.3.1"

setup.py

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
from os.path import join, dirname
22
from setuptools import setup, find_packages
33

4+
5+
SERVICES = (
6+
"ACIS (NOAA RCCs)",
7+
"CoCoRaHS",
8+
"Hydromet (USBR)",
9+
"SNOTEL AWDB (NRCS)",
10+
"NWIS (USGS)",
11+
)
12+
SVC_STR = ", ".join(SERVICES[:-1]) + " and " + SERVICES[-1]
13+
14+
DESCRIPTION = "Loads climate and hydrology data from %s." % SVC_STR
15+
416
LONG_DESCRIPTION = """
5-
A python library for iterating over ACIS (NOAA RCCs), Hydromet (USBR), NWIS
6-
(USGS), and CoCoRaHS time series data. Powered by wq.io.
7-
"""
17+
A pythonic library for iterating over climate time series data from %s.
18+
Powered by wq.io.
19+
""" % SVC_STR
820

921

1022
def long_description():
@@ -30,7 +42,7 @@ def get_version():
3042
url='https://github.com/heigeo/climata',
3143
license='MIT',
3244
packages=find_packages(),
33-
description='A pythonic interface for loading data from various climate webservices',
45+
description=DESCRIPTION,
3446
long_description=long_description(),
3547
install_requires=['wq.io>=0.5.1', 'owslib', 'SOAPpy'],
3648
scripts=['climata/bin/acis_sites.py', 'climata/bin/acis_data.py'],

0 commit comments

Comments
 (0)