mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-15 09:10:39 +00:00
13 lines
324 B
Python
13 lines
324 B
Python
#!/usr/bin/env python3
|
|
"""Default package."""
|
|
|
|
from importlib_metadata import version
|
|
|
|
__author__ = "Robert Kaussow"
|
|
__project__ = "docker-tidy"
|
|
__license__ = "Apache-2.0"
|
|
__maintainer__ = "Robert Kaussow"
|
|
__email__ = "mail@geeklabor.de"
|
|
__url__ = "https://github.com/xoxys/docker-tidy"
|
|
__version__ = version("docker-tidy")
|