Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c5bbff1

Browse files
author
Tom Pollard
committed
Bumped version number to 1.4
1. Updated version number 2. Changed download link to point to sourceforge project 3. Updated the project description
1 parent c60abaa commit c5bbff1

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

metar/__init__.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,23 @@
2222
# http://weather.noaa.gov/pub/data/observations/metar/cycles/<cycle>Z.TXT
2323
# where <cycle> is a 2-digit cycle number (e.g., "00", "05" or "23").
2424
#
25-
# Copyright 2004 Tom Pollard
25+
# Copyright 2004-2009 Tom Pollard
26+
# All rights reserved.
2627
#
2728
__author__ = "Tom Pollard"
2829

2930
__email__ = "[email protected]"
3031

31-
__version__ = "1.3"
32+
__version__ = "1.4"
3233

33-
__doc__ = """metar v%s (c) 2004, %s
34+
__doc__ = """metar v%s (c) 2009, %s
3435
3536
Metar is a python package that interprets coded METAR and SPECI weather reports.
3637
3738
Please e-mail bug reports to: %s""" % (__version__, __author__,__email__)
3839

3940
__LICENSE__ = """
40-
Copyright (c) 2004, %s
41+
Copyright (c) 2009, %s
4142
All rights reserved.
4243
4344
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

setup.py

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,35 +18,36 @@
1818
LONG_DESCRIPTION="""
1919
Metar is a python package for interpreting METAR and SPECI weather reports.
2020
21-
METAR is the international standard format for reporting weather observations.
21+
METAR is an international format for reporting weather observations.
2222
The standard specification for the METAR and SPECI codes is given
2323
in the WMO Manual on Codes, vol I.1, Part A (WMO-306 I.i.A). US
2424
conventions for METAR/SPECI reports are described in chapter 12 of
2525
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/
2727
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
3334
are formally supported, but a large number of variant formats found
3435
in international reports are accepted."""
3536

3637
setup(
3738
name="metar",
38-
version="1.3.0",
39+
version="1.4.0",
3940
author="Tom Pollard",
4041
author_email="[email protected]",
41-
url="http://homepage.mac.com/wtpollard/Software/FileSharing4.html",
42+
url="http://python-metar.sourceforge.net/",
4243
description=DESCRIPTION,
4344
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",
4546
license="MIT",
4647
packages=["metar"],
47-
platforms="Python 2.3 and later.",
48+
platforms="Python 2.5 and later.",
4849
classifiers=[
49-
"Development Status :: 4 - Beta",
50+
"Development Status :: 5 - Stable",
5051
"License :: OSI Approved :: MIT License",
5152
"Operating System :: OS Independent",
5253
"Programming Language :: Python",

0 commit comments

Comments
 (0)