Skip to content

Commit

Permalink
Rolling v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Veerendra committed Oct 28, 2021
1 parent 74b0c62 commit 4d64df4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ optional arguments:
-l View Available TV Show/Movies & Configuration
-e MODIFY MODIFY Modify Weights
-n NSFW Enable/Disable NSFW Quotes
-v Version and author information
-v show program's version number and exit
```

## How to Configure?
Expand Down
4 changes: 2 additions & 2 deletions funmotd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__author__ = "veerendra2"
__license__ = "Apache 2.0"
__version__ = "1.0"
__version__ = "1.1"
__maintainer__ = "veerendra2"


Expand Down Expand Up @@ -85,7 +85,7 @@ def main():
Configuration")
arg.add_argument("-e", action="store", dest="modify", default=False, nargs=2, help="Modify Weights")
arg.add_argument("-n", action="store", dest="nsfw", default=False, help="Enable/Disable NSFW Quotes")
arg.add_argument('-v', action='version', version='%(prog)s 1.0')
arg.add_argument('-v', action='version', version='%(prog)s 1.1')
results = arg.parse_args()
if results.view:
display_config()
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,14 @@ def run(self):

setuptools.setup(
name='funmotd',
version='1.0',
version='1.1',
description='TV Show and Movie Quotes MOTD for Terminal',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='motd, funmotd, movies-quotes',
project_urls={
'Documentation': 'https://github.com/veerendra2/funmotd/blob/master/README.md',
'Bug Reports':
'https://github.com/veerendra2/funmotd/issues',
'Bug Reports': 'https://github.com/veerendra2/funmotd/issues',
'Source Code': 'https://github.com/veerendra2/funmotd',
},
author='veerendra2',
Expand Down

0 comments on commit 4d64df4

Please sign in to comment.