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