How to use the tftest.__version__ function in tftest

To help you get started, we’ve selected a few tftest examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github GoogleCloudPlatform / terraform-python-testing-helper / setup.py View on Github external
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import setuptools

from tftest import __version__


with open("README.md", "r") as fh:
  long_description = fh.read()


setuptools.setup(
    name="tftest",
    version=__version__,
    author="Ludovico Magnocavallo",
    author_email="ludomagno@google.com",
    description="Simple Terraform test helper",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/GoogleCloudPlatform/terraform-python-testing-helper",
    py_modules=['tftest'],
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: Apache Software License",
        "Operating System :: OS Independent",
    ],
    setup_requires=['nose>=1.3'],
    test_suite='nose.collector'
)