diff --git a/README.md b/README.md index f3bdf1a..303b4ab 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,13 @@ -A common file operation utility +## `kfutils`: A tool for common data file operations. +[![PyPI version](https://badge.fury.io/py/kfutils.svg)](https://badge.fury.io/py/kfutils) - -#### Install it with +### Instalation +Download and install the latest package from the [release section](https://github.com/Koushikphy/kfutils/releases/latest) or directly by pip ```bash pip install kfutils ``` -#### Available operations +### Usage | Argument | Description| | ----------- | ----------- | `-i` | Input file name
If no operations are given it will show the stats about the file. | diff --git a/kfutils/cli.py b/kfutils/cli.py index 9b560f3..8996244 100644 --- a/kfutils/cli.py +++ b/kfutils/cli.py @@ -38,7 +38,7 @@ def createParser(): #main parser parser = CustomParser(prog="kutils", formatter_class=argparse.RawTextHelpFormatter, - description="A tool for common file operations.\n") + description="A tool for common data file operation.\n Created by: Koushik Naskar (koushik.naskar9@gmail.com)") #adding options for numerical jobs parser.add_argument('-i', type=str, help="Input file name. \nIf no operations are given it will show the stats about the file.", metavar="FILE", required=True) diff --git a/setup.py b/setup.py index 8c2dc52..ce8ba24 100644 --- a/setup.py +++ b/setup.py @@ -4,8 +4,8 @@ txt = f.read() setup(name='kfutils', - version='0.0.8', - description='A common file operation utility', + version='0.1.0', + description='A tool for common data file operation.', long_description=txt, long_description_content_type='text/markdown', author='Koushik Naskar', @@ -21,7 +21,7 @@ 'Topic :: System :: Shells' ], keywords='File Operations', - project_urls={'Source Code': 'https://github.com/Koushikphy/kutils'}, + project_urls={'Source Code': 'https://github.com/Koushikphy/kfutils'}, zip_safe=True, python_requires='>=3.6', packages=find_packages(),