provide compatibility between disutil and setuptools
This commit is contained in:
parent
d25f2eff23
commit
376c71d1ea
1 changed files with 4 additions and 1 deletions
5
setup.py
5
setup.py
|
@ -1,7 +1,10 @@
|
||||||
"""
|
"""
|
||||||
This is a python module provide a wrapper of terraform command line tool
|
This is a python module provide a wrapper of terraform command line tool
|
||||||
"""
|
"""
|
||||||
from setuptools import setup
|
try:
|
||||||
|
from setuptools import setup
|
||||||
|
except ImportError:
|
||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
dependencies = []
|
dependencies = []
|
||||||
module_name = 'python-terraform'
|
module_name = 'python-terraform'
|
||||||
|
|
Loading…
Reference in a new issue