From 2edaf94604ad8784474b2a46c22cfa905f78d07c Mon Sep 17 00:00:00 2001 From: Diogo de Campos Date: Mon, 23 Aug 2021 12:38:10 +0200 Subject: [PATCH] Moving files around so they can be imported in packaged library --- pyproject.toml | 4 ++-- main.py => yaml_patch/cli.py | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename main.py => yaml_patch/cli.py (100%) diff --git a/pyproject.toml b/pyproject.toml index b0a5512..b5b3165 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line-length = 120 [tool.poetry] name = "yaml-patch" -version = "0.1.2" +version = "0.1.3" description = "Patch yaml strings" readme = "README.md" authors = ["Diogo de Campos "] @@ -11,7 +11,7 @@ homepage = "https://github.com/campos-ddc/yaml-patch" license = "MIT" [tool.poetry.scripts] -yaml-patch = 'main:cli' +yaml-patch = 'yaml_patch.cli:cli' [tool.poetry.dependencies] python = "^3.7" diff --git a/main.py b/yaml_patch/cli.py similarity index 100% rename from main.py rename to yaml_patch/cli.py