2015-12-31 04:27:32 +00:00
|
|
|
"""
|
2016-11-19 16:48:59 +00:00
|
|
|
This is a python module provide a wrapper of terraform command line tool
|
2015-12-31 04:27:32 +00:00
|
|
|
"""
|
2017-01-04 15:56:22 +00:00
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
2015-12-31 04:27:32 +00:00
|
|
|
|
|
|
|
dependencies = []
|
2016-02-25 09:22:11 +00:00
|
|
|
module_name = 'python-terraform'
|
2016-11-19 15:56:00 +00:00
|
|
|
short_description = 'This is a python module provide a wrapper ' \
|
|
|
|
'of terraform command line tool'
|
2015-12-31 04:27:32 +00:00
|
|
|
|
2016-11-19 17:44:35 +00:00
|
|
|
try:
|
|
|
|
with open('DESCRIPTION.rst') as f:
|
|
|
|
long_description = f.read()
|
|
|
|
except IOError:
|
|
|
|
long_description = short_description
|
2016-11-19 15:36:32 +00:00
|
|
|
|
2015-12-31 04:27:32 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name=module_name,
|
2017-08-08 22:12:59 +00:00
|
|
|
version='0.9.0',
|
2015-12-31 06:48:26 +00:00
|
|
|
url='https://github.com/beelit94/python-terraform',
|
2016-11-19 11:00:35 +00:00
|
|
|
license='MIT',
|
2015-12-31 04:27:32 +00:00
|
|
|
author='Freddy Tan',
|
2015-12-31 06:51:32 +00:00
|
|
|
author_email='beelit94@gmail.com',
|
2016-11-19 15:56:00 +00:00
|
|
|
description=short_description,
|
2016-11-19 15:36:32 +00:00
|
|
|
long_description=long_description,
|
2016-02-25 09:22:11 +00:00
|
|
|
packages=['python_terraform'],
|
2015-12-31 04:27:32 +00:00
|
|
|
package_data={},
|
|
|
|
platforms='any',
|
|
|
|
install_requires=dependencies,
|
|
|
|
classifiers=[
|
|
|
|
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
# 'Development Status :: 1 - Planning',
|
|
|
|
# 'Development Status :: 2 - Pre-Alpha',
|
|
|
|
# 'Development Status :: 3 - Alpha',
|
2016-11-19 11:00:35 +00:00
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
# 'Development Status :: 5 - Production/Stable',
|
2015-12-31 04:27:32 +00:00
|
|
|
# 'Development Status :: 6 - Mature',
|
|
|
|
# 'Development Status :: 7 - Inactive',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Developers',
|
2016-11-19 15:29:57 +00:00
|
|
|
'License :: OSI Approved :: MIT License',
|
2015-12-31 04:27:32 +00:00
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Operating System :: MacOS',
|
|
|
|
'Operating System :: Unix',
|
2016-11-19 11:17:08 +00:00
|
|
|
# 'Operating System :: Windows',
|
2015-12-31 04:27:32 +00:00
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
]
|
|
|
|
)
|