We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13cb412 commit 164eff3Copy full SHA for 164eff3
1 file changed
setup.py
@@ -1,5 +1,10 @@
1
import os
2
-from distutils.core import setup
+try:
3
+ from setuptools import setup
4
+except ImportError:
5
+ from distutils.core import setup
6
+#from distutils.core import setup
7
+
8
from distutils.command.install import INSTALL_SCHEMES
9
10
def read(*rnames):
@@ -66,7 +71,7 @@ def fullsplit(path, result=None):
66
71
author="LMN Solutions",
67
72
author_email="rogue@lmnsolutions.com",
68
73
description="geoshape, based on GeoNode",
69
- long_description=(read('README.md')),
74
+ #long_description=(read('README.md')),
70
75
classifiers=[
76
'Development Status :: 5 - Production/Stable',
77
],
0 commit comments