[Git][debian-gis-team/pyshp][upstream] New upstream version 2.0.1+ds

Bas Couwenberg gitlab at salsa.debian.org
Wed Nov 7 16:40:57 GMT 2018


Bas Couwenberg pushed to branch upstream at Debian GIS Project / pyshp


Commits:
31b45e3b by Bas Couwenberg at 2018-11-07T16:33:52Z
New upstream version 2.0.1+ds
- - - - -


5 changed files:

- PKG-INFO
- README.md
- changelog.txt
- setup.py
- shapefile.py


Changes:

=====================================
PKG-INFO
=====================================
@@ -1,13 +1,13 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.2
 Name: pyshp
-Version: 2.0.0
+Version: 2.0.1
 Summary: Pure Python read/write support for ESRI Shapefile format
 Home-page: https://github.com/GeospatialPython/pyshp
 Author: Joel Lawhead
 Author-email: jlawhead at geospatialpython.com
 License: MIT
-Download-URL: https://github.com/GeospatialPython/pyshp/archive/2.0.0.tar.gz
-Description-Content-Type: UNKNOWN
+Download-URL: https://github.com/GeospatialPython/pyshp/archive/2.0.1.tar.gz
+Description-Content-Type: text/markdown
 Description: # PyShp
         
         The Python Shapefile Library (pyshp) reads and writes ESRI Shapefiles in pure Python.
@@ -882,7 +882,7 @@ Description: # PyShp
         
         **Shapefiles with measurement (M) values**
         
-        Measured shape types are shapes that include a measurement value at each vertice, for instance speed measurements from a GPS device. 
+        Measured shape types are shapes that include a measurement value at each vertex, for instance speed measurements from a GPS device. 
         Shapes with measurement (M) values are added with following methods: "pointm", "multipointm", "linem", and "polygonm". 
         The M-values are specified by adding a third M value to each XY coordinate. Missing or unobserved M-values are specified with a None value,
         or by simply omitting the third M-coordinate. 
@@ -913,7 +913,7 @@ Description: # PyShp
         	
         **Shapefiles with elevation (Z) values**
         
-        Elevation shape types are shapes that include an elevation value at each vertice, for instance elevation from a GPS device. 
+        Elevation shape types are shapes that include an elevation value at each vertex, for instance elevation from a GPS device. 
         Shapes with an elevation (Z) values are added with following methods: "pointz", "multipointz", "linez", and "polygonz". 
         The Z-values are specified by adding a third Z value to each XY coordinate. Z-values do not support the concept of missing data,
         but if you omit the third Z-coordinate it will default to 0. Note that Z-type shapes also support measurement (M) values added
@@ -1065,11 +1065,46 @@ Description: # PyShp
         Linux/Mac and similar platforms will need to run `$ dos2unix README.md` in order
         correct line endings in README.md.
         
+        # Contributors
         
+        ```
+        Atle Frenvik Sveen
+        Bas Couwenberg
+        Casey Meisenzahl
+        Charles Arnold
+        David A. Riggs
+        davidh-ssec
+        Evan Heidtmann
+        geospatialpython
+        Hannes
+        Ignacio Martinez Vazquez
+        Jason Moujaes
+        Karim Bahgat
+        Kyle Kelley
+        Louis Tiao
+        Marcin Cuprjak
+        Micah Cochran
+        Michael Davis
+        Michal Čihař
+        Mike Toews
+        Nilo
+        Paulo Ernesto
+        Raynor Vliegendhart
+        Razzi Abuissa
+        Ross Rogers
+        Ryan Brideau
+        Tobias Megies
+        Tommi Penttinen
+        Uli Köhler
+        Zac Miller
+        ```
         
 Keywords: gis geospatial geographic shapefile shapefiles
 Platform: UNKNOWN
 Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
 Classifier: Topic :: Scientific/Engineering :: GIS
 Classifier: Topic :: Software Development :: Libraries
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Requires-Python: >= 2.7


=====================================
README.md
=====================================
@@ -872,7 +872,7 @@ various other types of geometries as well, including complex 3D surfaces and obj
 
 **Shapefiles with measurement (M) values**
 
-Measured shape types are shapes that include a measurement value at each vertice, for instance speed measurements from a GPS device. 
+Measured shape types are shapes that include a measurement value at each vertex, for instance speed measurements from a GPS device. 
 Shapes with measurement (M) values are added with following methods: "pointm", "multipointm", "linem", and "polygonm". 
 The M-values are specified by adding a third M value to each XY coordinate. Missing or unobserved M-values are specified with a None value,
 or by simply omitting the third M-coordinate. 
@@ -903,7 +903,7 @@ Shapefiles containing M-values can be examined in several ways:
 	
 **Shapefiles with elevation (Z) values**
 
-Elevation shape types are shapes that include an elevation value at each vertice, for instance elevation from a GPS device. 
+Elevation shape types are shapes that include an elevation value at each vertex, for instance elevation from a GPS device. 
 Shapes with an elevation (Z) values are added with following methods: "pointz", "multipointz", "linez", and "polygonz". 
 The Z-values are specified by adding a third Z value to each XY coordinate. Z-values do not support the concept of missing data,
 but if you omit the third Z-coordinate it will default to 0. Note that Z-type shapes also support measurement (M) values added
@@ -1055,4 +1055,36 @@ $ python shapefile.py
 Linux/Mac and similar platforms will need to run `$ dos2unix README.md` in order
 correct line endings in README.md.
 
+# Contributors
 
+```
+Atle Frenvik Sveen
+Bas Couwenberg
+Casey Meisenzahl
+Charles Arnold
+David A. Riggs
+davidh-ssec
+Evan Heidtmann
+geospatialpython
+Hannes
+Ignacio Martinez Vazquez
+Jason Moujaes
+Karim Bahgat
+Kyle Kelley
+Louis Tiao
+Marcin Cuprjak
+Micah Cochran
+Michael Davis
+Michal Čihař
+Mike Toews
+Nilo
+Paulo Ernesto
+Raynor Vliegendhart
+Razzi Abuissa
+Ross Rogers
+Ryan Brideau
+Tobias Megies
+Tommi Penttinen
+Uli Köhler
+Zac Miller
+```


=====================================
changelog.txt
=====================================
@@ -1,4 +1,9 @@
 
+VERSION 2.0.1
+
+2018-11-05
+	* Fix pip install setup.py README decoding error. 
+
 VERSION 2.0.0
 
 2018-09-01


=====================================
setup.py
=====================================
@@ -1,18 +1,28 @@
 from setuptools import setup
 
+
+def read_file(file):
+    with open(file, 'rb') as fh:
+        data = fh.read()
+    return data.decode('utf-8')
+
 setup(name='pyshp',
-      version='2.0.0',
+      version='2.0.1',
       description='Pure Python read/write support for ESRI Shapefile format',
-      long_description=open('README.md').read(),
+      long_description=read_file('README.md'),
+      long_description_content_type='text/markdown',
       author='Joel Lawhead',
       author_email='jlawhead at geospatialpython.com',
       url='https://github.com/GeospatialPython/pyshp',
-      download_url='https://github.com/GeospatialPython/pyshp/archive/2.0.0.tar.gz',
+      download_url='https://github.com/GeospatialPython/pyshp/archive/2.0.1.tar.gz',
       py_modules=['shapefile'],
       license='MIT',
       zip_safe=False,
       keywords='gis geospatial geographic shapefile shapefiles',
+      python_requires='>= 2.7',
       classifiers=['Programming Language :: Python',
+                   'Programming Language :: Python :: 2.7',
+                   'Programming Language :: Python :: 3',
                    'Topic :: Scientific/Engineering :: GIS',
                    'Topic :: Software Development :: Libraries',
                    'Topic :: Software Development :: Libraries :: Python Modules'])


=====================================
shapefile.py
=====================================
@@ -2,12 +2,11 @@
 shapefile.py
 Provides read and write support for ESRI Shapefiles.
 author: jlawhead<at>geospatialpython.com
-date: 2018/09/01
-version: 2.0.0
+version: 2.0.1
 Compatible with Python versions 2.7-3.x
 """
 
-__version__ = "2.0.0"
+__version__ = "2.0.1"
 
 from struct import pack, unpack, calcsize, error, Struct
 import os



View it on GitLab: https://salsa.debian.org/debian-gis-team/pyshp/commit/31b45e3b7a13ba2c3e08455fb44fd39b64190ea5

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/pyshp/commit/31b45e3b7a13ba2c3e08455fb44fd39b64190ea5
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20181107/6c6b0136/attachment-0001.html>


More information about the Pkg-grass-devel mailing list