Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
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',
description='Pure Python read/write support for ESRI Shapefile format',
long_description=open('README.md').read(),
long_description=read_file('README.md'),
author='Joel Lawhead',
author_email='jlawhead@geospatialpython.com',
url='https://github.com/GeospatialPython/pyshp',
Expand All @@ -12,7 +19,10 @@
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'])