commit 396d0c0722d85b574f3f3a3f483d70222de3e03d Author: KKlochko Date: Sat Jun 17 21:50:14 2023 +0300 Project initialization. diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..ce5da6f --- /dev/null +++ b/README.rst @@ -0,0 +1,10 @@ +docker_tags_getter +========= + +docker_tags_getter is the application that will help you to get tags from yours docker repository. + +Author +====== + +Kostiantyn Klochko (c) 2023 + diff --git a/docker_tags_getter/__init__.py b/docker_tags_getter/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/docker_tags_getter/main.py b/docker_tags_getter/main.py new file mode 100644 index 0000000..82c541f --- /dev/null +++ b/docker_tags_getter/main.py @@ -0,0 +1,6 @@ + +def main(): + pass + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..3260739 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "docker-tags-getter" +version = "0.1.0" +description = "" +authors = ["Kostiantyn Klochko "] +readme = "README.org" +packages = [{include = "docker_tags_getter"}] + +[tool.poetry.dependencies] +python = "^3.9" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29