provide compatibility between disutil and setuptools

This commit is contained in:
beelit94 2017-01-04 23:56:22 +08:00
parent d25f2eff23
commit 376c71d1ea

View file

@ -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'