Skip to content

Commit 164eff3

Browse files
committed
removed the long description to REAME.md reference as it was causing 500 errors with no warning when pushing package to Pypi
1 parent 13cb412 commit 164eff3

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import os
2-
from distutils.core import setup
2+
try:
3+
from setuptools import setup
4+
except ImportError:
5+
from distutils.core import setup
6+
#from distutils.core import setup
7+
38
from distutils.command.install import INSTALL_SCHEMES
49

510
def read(*rnames):
@@ -66,7 +71,7 @@ def fullsplit(path, result=None):
6671
author="LMN Solutions",
6772
author_email="rogue@lmnsolutions.com",
6873
description="geoshape, based on GeoNode",
69-
long_description=(read('README.md')),
74+
#long_description=(read('README.md')),
7075
classifiers=[
7176
'Development Status :: 5 - Production/Stable',
7277
],

0 commit comments

Comments
 (0)