dda-python-terraform/setup.py

58 lines
1.7 KiB
Python
Raw Normal View History

"""
2016-11-19 16:48:59 +00:00
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 = []
2020-10-19 22:30:02 +00:00
module_name = "python-terraform"
short_description = (
"This is a python module provide a wrapper " "of terraform command line tool"
)
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
setup(
name=module_name,
2021-02-28 14:02:43 +00:00
version="0.14.0",
2020-10-19 22:30:02 +00:00
url="https://github.com/beelit94/python-terraform",
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,
2020-10-19 22:30:02 +00:00
packages=["python_terraform"],
package_data={},
2020-10-19 22:30:02 +00:00
platforms="any",
install_requires=dependencies,
2020-10-20 22:39:43 +00:00
tests_require=["pytest"],
python_requires=">=3.6",
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',
# '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",
],
)