Skip to content

Commit

Permalink
credit
Browse files Browse the repository at this point in the history
  • Loading branch information
Koushikphy committed Nov 22, 2022
1 parent 9d6639b commit 80deddb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions mfig/mfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
from subprocess import call,STDOUT,check_output,run
import shutil,os,argparse,sys
import string

import pkg_resources
version= pkg_resources.require('mfig')[0].version

# How it works:
# 1. Create a tex document with necessary configurations
Expand All @@ -22,7 +23,9 @@ def error(self, message):
def createParser():
#main parser
parser = CustomParser(prog="onefig",formatter_class=argparse.RawTextHelpFormatter,
description="A tool for merging multiple figures into one.")
description="A tool for merging multiple figures into one.",
epilog="Version: {}\nCreated by Koushik Naskar (koushik.naskar9@gmail.com)".format(version)
)

#adding options for numerical jobs
parser.add_argument('-i',nargs='+',type=str,help="List of input files",metavar="FILE",required=True)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
txt = f.read()

setup(name='mfig',
version='0.2.3',
version='0.2.4',
description='A tool for merging multiple figures into one',
long_description=txt,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 80deddb

Please sign in to comment.