Metadata-Version: 2.1
Name: pygdal
Version: 3.7.2.11
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
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 :: Python :: 3
Classifier: Programming Language :: C
Classifier: Programming Language :: C++
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.0.0

b'# Virtualenv friendly GDAL bindings for Python\n\nThis package is for you if you had problems installing GDAL in your virtualenv.\nYou can install GDAL into your virtualenv using this package but you still need\nto install GDAL library and its header files on your system. On Ubuntu it can be\ndone this way:\n\n```bash\n$ sudo apt-get install libgdal1-dev\n```\n\nVersion of the same package, and GDAL, so that if you have installed GDAL 3.6.4\nyou need to install 3.6.4.\\* of this package:\n\n```bash\n$ gdal-config --version\n3.6.4\n$ virtualenv --no-site-packages env\n$ env/bin/pip install pygdal=="3.6.4.*"\n```\n\nThe trick with range of versions required to support pygdal versioning.\n\nPackage `numpy` is also listed as a dependency, so you do not need to install it\nbefore installing GDAL. After package is installed you can use is same way as\nstandard GDAL bindings:\n\n```python\nfrom osgeo import gdal, ogr, osr\n\n# ...\n```\n'
