Skip to content

Commit

Permalink
removed the long description to REAME.md reference as it was causing …
Browse files Browse the repository at this point in the history
…500 errors with no warning when pushing package to Pypi
  • Loading branch information
smesdaghi committed May 21, 2015
1 parent 13cb412 commit 164eff3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import os
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
#from distutils.core import setup

from distutils.command.install import INSTALL_SCHEMES

def read(*rnames):
Expand Down Expand Up @@ -66,7 +71,7 @@ def fullsplit(path, result=None):
author="LMN Solutions",
author_email="[email protected]",
description="geoshape, based on GeoNode",
long_description=(read('README.md')),
#long_description=(read('README.md')),
classifiers=[
'Development Status :: 5 - Production/Stable',
],
Expand Down

0 comments on commit 164eff3

Please sign in to comment.