Skip to content

Commit

Permalink
Merge pull request #2 from codesrg/develop
Browse files Browse the repository at this point in the history
update script in pyproject.
  • Loading branch information
codesrg authored Nov 1, 2022
2 parents aec7c03 + fd5b2b3 commit 8fdc466
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ To decrypt a cipher and store it as text file.

```
$ sipher "-.. .- - .- " --decrypt --store
Encrypted message copied to clipboard.
Encrypted message stored in 'path_given'.
Encrypted message stored in 'path_given/default_path'.
```

## Issues:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sipher"
version = "1.0.0"
version = "1.0.1"
description = "To encrypt and decrypt message."
readme = "README.md"
requires-python = ">=3.6"
Expand Down Expand Up @@ -33,4 +33,4 @@ keywords = [
"Bug Tracker" = "https://github.com/codesrg/sipher/issues"

[project.scripts]
zenpass = "sipher.__main__:main"
sipher = "sipher.__main__:main"
3 changes: 2 additions & 1 deletion sipher/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Encrypt/Decrypt message using morse code"""


__author__ = 'srg'
__version__ = '1.0.0'
__version__ = '1.0.1'

from .morse import Morse
2 changes: 1 addition & 1 deletion sipher/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from sipher.morse import Morse

__prog__ = 'sipher'
__version__ = '1.0.0'
__version__ = '1.0.1'


def get_argument():
Expand Down

0 comments on commit 8fdc466

Please sign in to comment.