Metadata-Version: 1.1
Name: wgrib-python
Version: 0.0.1.dev2
Summary: Simple python wgrib wrapper
Home-page: https://github.com/Lightslayer/wgrib-python
Author: Liam Deacon
Author-email: liam.m.deacon@gmail.com
License: MIT License

Description-Content-Type: UNKNOWN
Description: wgrib-python - A thin Python wrapper for wgrib
        ==============================================
        
        Install
        -------
        
        To build please run:
        
        ```pip install wgrib-python```
        
        For configuring wgrib2, `CC` and `FC` environment variables need to set prior to calling `pip`, e.g.
        
        ```bash
        
        export CC=gcc-7
        export FC=gfortran-7
        
        ```
        
        Example
        -------
        
        To use try the following python code:
        
        ```python
        
        from wgrib import wgrib_main  # wgrib1
        import shlex
        
        output = wgrib_main(shlex.split('-text -verf'))
        print(output)
        
        ```
        
        TODO
        ----
        
        - Full wgrib2 support
        - Fancier wrappings for more flexibility
        
Keywords: wgrib weather GRIB
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
