Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Koushikphy committed Nov 19, 2022
1 parent 48321db commit 2aeec6e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 <br>If no operations are given it will show the stats about the file. |
Expand Down
2 changes: 1 addition & 1 deletion kfutils/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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(),
Expand Down

0 comments on commit 2aeec6e

Please sign in to comment.