forked from GeospatialPython/pyshp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
18 lines (17 loc) · 825 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
setup(name='pyshp',
version='1.2.3',
description='Pure Python read/write support for ESRI Shapefile format',
long_description=open('README.txt').read(),
author='Joel Lawhead',
author_email='[email protected]',
url='https://github.com/GeospatialPython/pyshp',
download_url='https://github.com/GeospatialPython/pyshp/archive/1.2.2.tar.gz',
py_modules=['shapefile'],
license='MIT',
zip_safe=False,
keywords='gis geospatial geographic shapefile shapefiles',
classifiers=['Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'])