File tree Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 1
- VERSION = "0.3.0 "
1
+ VERSION = "0.3.1 "
Original file line number Diff line number Diff line change 1
1
from os .path import join , dirname
2
2
from setuptools import setup , find_packages
3
3
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
+
4
16
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
8
20
9
21
10
22
def long_description ():
@@ -30,7 +42,7 @@ def get_version():
30
42
url = 'https://github.com/heigeo/climata' ,
31
43
license = 'MIT' ,
32
44
packages = find_packages (),
33
- description = 'A pythonic interface for loading data from various climate webservices' ,
45
+ description = DESCRIPTION ,
34
46
long_description = long_description (),
35
47
install_requires = ['wq.io>=0.5.1' , 'owslib' , 'SOAPpy' ],
36
48
scripts = ['climata/bin/acis_sites.py' , 'climata/bin/acis_data.py' ],
You can’t perform that action at this time.
0 commit comments