From 74ccd9ce5f29a1df4ffe70b4d8bd00c29d5d9d15 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Thu, 12 Jul 2018 19:26:14 -0700 Subject: Update python directories to better support setup.py Signed-off-by: Jhon Honce --- contrib/python/podman/__init__.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 contrib/python/podman/__init__.py (limited to 'contrib/python/podman/__init__.py') diff --git a/contrib/python/podman/__init__.py b/contrib/python/podman/__init__.py deleted file mode 100644 index 5a0356311..000000000 --- a/contrib/python/podman/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -"""A client for communicating with a Podman server.""" -import pkg_resources - -from .client import Client -from .libs import datetime_format, datetime_parse -from .libs.errors import (ContainerNotFound, ErrorOccurred, ImageNotFound, - RuntimeError) - -try: - __version__ = pkg_resources.get_distribution('podman').version -except Exception: - __version__ = '0.0.0' - -__all__ = [ - 'Client', - 'ContainerNotFound', - 'datetime_format', - 'datetime_parse', - 'ErrorOccurred', - 'ImageNotFound', - 'RuntimeError', -] -- cgit v1.2.3-54-g00ecf