From dfb1aeb8c61bcb77d15664d93a274705fd3a6de0 Mon Sep 17 00:00:00 2001 From: Casey Webster Date: Sat, 16 Feb 2019 23:39:22 -0600 Subject: [PATCH] Bump version to v1.0.1 to fix bindist issue with plot_acars Signed-off-by: Casey Webster --- README.md | 2 +- VERSION | 2 +- pymeteo/__init__.py | 2 +- setup.py | 28 ++++++++++++++-------------- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 8013b08..4aa7214 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ From the website for the most recent sounding from a station: $ skewt uwyoweb --station 72251 skewt.pdf ``` -##From Numpy arrays +## From Numpy arrays ``` import numpy as np diff --git a/VERSION b/VERSION index 3eefcb9..7dea76e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.0 +1.0.1 diff --git a/pymeteo/__init__.py b/pymeteo/__init__.py index 483760f..04e6699 100644 --- a/pymeteo/__init__.py +++ b/pymeteo/__init__.py @@ -6,4 +6,4 @@ bugs using the github issue tracker at https://github.com/cwebster2/pymeteo/issues. """ -__version__=0.6 +__version__="1.0.1" diff --git a/setup.py b/setup.py index 2e123dc..a3f266e 100644 --- a/setup.py +++ b/setup.py @@ -7,17 +7,17 @@ classes for reading CM1 output files in grads and HDF5 format. """ -classifiers = """\ -Intended Audience :: Science/Research -License :: OSI Approved :: BSD License -Topic :: Scientific/Engineering :: Atmospheric Science -Development Status :: 4 - Beta -Topic :: Software Development :: Libraries :: Python Modules -Programming Language :: Python :: 3 -Programming Language :: Python :: 3.4 -Programming Language :: Python :: 2 -Programming Language :: Python :: 2.7 -""" +classifiers = [ +"Intended Audience :: Science/Research", +"License :: OSI Approved :: BSD License", +"Topic :: Scientific/Engineering :: Atmospheric Science", +"Development Status :: 5 - Production/Stable", +"Topic :: Software Development :: Libraries :: Python Modules", +"Programming Language :: Python :: 3", +"Programming Language :: Python :: 3.7", +"Programming Language :: Python :: 2", +"Programming Language :: Python :: 2.7" +] import os import subprocess @@ -55,6 +55,6 @@ def readme(): 'bin/skewt-hdf', 'bin/skewt-blank', 'bin/skewt-wrf'], - data_files=[('pymeteo/data', ['pymeteo/data/airport_info.dat'])], - classifiers=filter(None, classifiers.split("\n"))) - + package_data={'pymeteo.data': ['airport_info.dat']}, + classifiers=classifiers +)