Skip to content

Commit

Permalink
Corrected description for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-ward committed Apr 25, 2018
1 parent 0f9634b commit bab9afd
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,6 @@
import os
from setuptools import setup


long_description = 'Utility to read and export ArcGIS Tile Packages'


if os.path.exists('README.md'):
try:
# Use pypandoc to convert markdown readme to reStructuredText as required by pypi
# Requires pandoc to be installed. See: http://johnmacfarlane.net/pandoc/installing.html
from pypandoc import convert
read_md = lambda f: convert(f, 'rst', format='md')
long_description = read_md('README.md')
except:
pass


setup(
name='tpkutils',
version='0.6.0',
Expand All @@ -25,7 +10,8 @@
author='Brendan Ward',
author_email='bcward@consbio.org',
description='ArcGIS Tile Package Utilities',
long_description=long_description,
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
install_requires=['click', 'pymbtiles', 'six'],
include_package_data=True,
extras_require={
Expand Down

0 comments on commit bab9afd

Please sign in to comment.