|
18 | 18 | LONG_DESCRIPTION="""
|
19 | 19 | Metar is a python package for interpreting METAR and SPECI weather reports.
|
20 | 20 |
|
21 |
| -METAR is the international standard format for reporting weather observations. |
| 21 | +METAR is an international format for reporting weather observations. |
22 | 22 | The standard specification for the METAR and SPECI codes is given
|
23 | 23 | in the WMO Manual on Codes, vol I.1, Part A (WMO-306 I.i.A). US
|
24 | 24 | conventions for METAR/SPECI reports are described in chapter 12 of
|
25 | 25 | the Federal Meteorological Handbook No.1. (FMH-1 1995), issued by
|
26 |
| -NOAA. See <http://metar.noaa.gov/> |
| 26 | +NOAA. See http://www.ncdc.noaa.gov/oa/wdc/metar/ |
27 | 27 |
|
28 |
| -This module handles all main-body groups in reports that follow the |
29 |
| -WMO spec or the US conventions, except for trend groups. The most |
30 |
| -useful remark groups defined in the US spec are parsed, as well, |
31 |
| -such as the cumulative precipitation, min/max temperature, peak |
32 |
| -wind and sea-level pressure groups. No other regional conventions |
| 28 | +This module extracts the data recorded in the main-body groups of |
| 29 | +reports that follow the WMO spec or the US conventions, except for |
| 30 | +the runway state and trend groups, which are parsed but ignored. |
| 31 | +The most useful remark groups defined in the US spec are parsed, |
| 32 | +as well, such as the cumulative precipitation, min/max temperature, |
| 33 | +peak wind and sea-level pressure groups. No other regional conventions |
33 | 34 | are formally supported, but a large number of variant formats found
|
34 | 35 | in international reports are accepted."""
|
35 | 36 |
|
36 | 37 | setup(
|
37 | 38 | name="metar",
|
38 |
| - version="1.3.0", |
| 39 | + version="1.4.0", |
39 | 40 | author="Tom Pollard",
|
40 | 41 |
|
41 |
| - url="http://homepage.mac.com/wtpollard/Software/FileSharing4.html", |
| 42 | + url="http://python-metar.sourceforge.net/", |
42 | 43 | description=DESCRIPTION,
|
43 | 44 | long_description=LONG_DESCRIPTION,
|
44 |
| - download_url="http://homepage.mac.com/wtpollard/Software/FileSharing4.html", |
| 45 | + download_url="http://sourceforge.net/project/platformdownload.php?group_id=134052", |
45 | 46 | license="MIT",
|
46 | 47 | packages=["metar"],
|
47 |
| - platforms="Python 2.3 and later.", |
| 48 | + platforms="Python 2.5 and later.", |
48 | 49 | classifiers=[
|
49 |
| - "Development Status :: 4 - Beta", |
| 50 | + "Development Status :: 5 - Stable", |
50 | 51 | "License :: OSI Approved :: MIT License",
|
51 | 52 | "Operating System :: OS Independent",
|
52 | 53 | "Programming Language :: Python",
|
|
0 commit comments