Skip to content

Commit f69c60c

Browse files
committed
support ez_setup envs
1 parent 474e07f commit f69c60c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
from setuptools import setup
1+
try:
2+
from setuptools import setup
3+
except ImportError:
4+
from ez_setup import use_setuptools
5+
use_setuptools()
6+
from setuptools import setup
27

38
__version__ = '0.1.3'
49

0 commit comments

Comments
 (0)