Metadata-Version: 2.1
Name: pygdal
Version: 3.1.1.6
Summary: Virtualenv and setuptools friendly version of standard GDAL python bindings
Home-page: https://github.com/nextgis/pygdal
Author: Frank Warmerdam
Author-email: warmerdam@pobox.com
Maintainer: Aleksandr Dezhin
Maintainer-email: me@dezhin.net
License: MIT
Description: pygdal
        ======
        
        Virtualenv and setuptools friendly version of standard GDAL python bindings.
        
        This package is for you if you had problems installing GDAL in your virtualenv. You can install GDAL into your virtualenv using this package but you still need to install GDAL library and its header files on your system. On Ubuntu it can be done this way:
        
        ::
        
          $ sudo apt-get install libgdal1-dev
        
        Version of the same package, and GDAL, so that if you have installed GDAL 1.8.1 you need to install the version 1.8.1 of this package:
        
        ::
        
          $ gdal-config --version
          1.8.1
        
          $ git clone git@github.com:nextgis/pygdal.git
          $ cd pygdal
          $ virtualenv --no-site-packages env
          $ env/bin/pip install 1.8.1/
        
        Or you can install package directly from PyPi:
        
        ::
        
          $ virtualenv --no-site-packages env
          $ env/bin/pip install pygdal=="`gdal-config --version`.*"
        
        The trick with range of versions required to support pygdal versioning.
        
        The supported versions are ``1.8.1`` - ``3.0.4``. Package ``numpy`` is also listed as a dependency (using ``setup_requires`` and ``install_requires`` directives), so you do not need to install it before installing GDAL.
        
        If you installed GDAL using the `KyngChaos frameworks <http://www.kyngchaos.com/software/frameworks/>`_, you may need to override the default values returned by ``gdal-config --prefix`` in order to install this package. This can be accomplished by setting the ``GDALHOME`` environment variable, e.g.
        
        ::
        
          $ export GDALHOME="/Library/Frameworks/GDAL.framework/Versions/Current/unix/"
          $ env/bin/pip install pygdal=="`gdal-config --version`.*"
        
        After package is installed you can use is same way as standard GDAL bindings:
        
        ::
        
          from osgeo import gdal
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: C
Classifier: Programming Language :: C++
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Description-Content-Type: text/x-rst
