-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed the long description to REAME.md reference as it was causing …
…500 errors with no warning when pushing package to Pypi
- Loading branch information
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): | ||
|
@@ -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', | ||
], | ||
|