We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 474e07f commit f69c60cCopy full SHA for f69c60c
setup.py
@@ -1,4 +1,9 @@
1
-from setuptools import setup
+try:
2
+ from setuptools import setup
3
+except ImportError:
4
+ from ez_setup import use_setuptools
5
+ use_setuptools()
6
7
8
__version__ = '0.1.3'
9
0 commit comments