From fb2b9f3003af596a601937c48d31183a00884b54 Mon Sep 17 00:00:00 2001 From: Wibo Kuipers Date: Mon, 24 Jan 2022 22:08:54 +0100 Subject: [PATCH] Updated readme and setuppy --- README.md | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a9f493f..558b9ef 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,14 @@ Note the `pip` refers to the Python 3 package manager. In environment where Pyth ## Usage +### In console + +Run the `minify-project` command in the terminal. It takes two arguments `src` and `dst`. + + minify-project path/to/src path/to/dst + +### Python API + Import python_project_minify: import python_project_minify diff --git a/setup.py b/setup.py index 66a1e3d..8d53c2e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="python-project-minify", - version="0.0.1", + version="0.0.2", author="Wibo Kuipers", author_email="w.kuipers@filmage.nl", description="A quick way to compile your Python project into it's most compact form. Built on the great python-minify package.",