Skip to content

Commit 3cdf157

Browse files
committed
simplify setup.py so that it actually works...
1 parent 134b3ff commit 3cdf157

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

setup.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
from codecs import open as codecs_open
22
from setuptools import setup, find_packages
33

4-
# Get README in rst
5-
try:
6-
import pypandoc
7-
long_description = pypandoc.convert('README.md', 'rst')
8-
except(IOError, ImportError):
9-
long_description = open('README.md').read()
10-
114
setup(
125
name='overpass',
136
packages=['overpass'],
14-
version='0.5.5',
7+
version='0.5.6',
158
description='Python wrapper for the OpenStreetMap Overpass API',
16-
long_description=long_description,
9+
long_description='See README.md',
1710
author='Martijn van Exel',
1811
author_email='[email protected]',
1912
url='https://github.com/mvexel/overpass-api-python-wrapper',

0 commit comments

Comments
 (0)