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 = []
|
2021-06-25 11:36:20 +00:00
|
|
|
module_name = "dda-python-terraform"
|
2020-10-19 22:30:02 +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:
|
2020-10-19 22:30:02 +00:00
|
|
|
with open("DESCRIPTION.rst") as f:
|
2016-11-19 17:44:35 +00:00
|
|
|
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,
|
2022-01-20 17:53:18 +00:00
|
|
|
version="1.1.0-dev",
|
2021-06-25 11:36:20 +00:00
|
|
|
url="https://github.com/DomainDrivenArchitecture/python-terraform",
|
2020-10-19 22:30:02 +00:00
|
|
|
license="MIT",
|
|
|
|
author="Freddy Tan",
|
|
|
|
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,
|
2021-06-25 14:50:06 +00:00
|
|
|
packages=["python_terraform"],
|
2015-12-31 04:27:32 +00:00
|
|
|
package_data={},
|
2020-10-19 22:30:02 +00:00
|
|
|
platforms="any",
|
2015-12-31 04:27:32 +00:00
|
|
|
install_requires=dependencies,
|
2020-10-20 22:39:43 +00:00
|
|
|
tests_require=["pytest"],
|
|
|
|
python_requires=">=3.6",
|
2015-12-31 04:27:32 +00:00
|
|
|
classifiers=[
|
|
|
|
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
# 'Development Status :: 1 - Planning',
|
|
|
|
# 'Development Status :: 2 - Pre-Alpha',
|
|
|
|
# 'Development Status :: 3 - Alpha',
|
2020-10-19 22:30:02 +00:00
|
|
|
"Development Status :: 4 - Beta",
|
2016-11-19 11:00:35 +00:00
|
|
|
# 'Development Status :: 5 - Production/Stable',
|
2015-12-31 04:27:32 +00:00
|
|
|
# 'Development Status :: 6 - Mature',
|
|
|
|
# 'Development Status :: 7 - Inactive',
|
2020-10-19 22:30:02 +00:00
|
|
|
"Environment :: Console",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Operating System :: MacOS",
|
|
|
|
"Operating System :: Unix",
|
2016-11-19 11:17:08 +00:00
|
|
|
# 'Operating System :: Windows',
|
2020-10-19 22:30:02 +00:00
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
],
|
2015-12-31 04:27:32 +00:00
|
|
|
)
|