Skip to content

Commit

Permalink
added required libs in setup script.
Browse files Browse the repository at this point in the history
  • Loading branch information
4w415 committed Jan 16, 2019
1 parent acc44c8 commit 49e534a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ebryx/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2"
__version__ = "0.3"
17 changes: 9 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@
long_description = fh.read()

setup(
name = "ebryx",
packages = find_packages(),
entry_points = {
name="ebryx",
packages=find_packages(),
entry_points={
"console_scripts": ['ebcrypt = ebryx.crypto._crypto:main'],
},
version = version,
description = "A simple utility to encrypt / decrypt text files.",
long_description = long_description,
version=version,
description="A simple utility to encrypt / decrypt text files.",
long_description=long_description,
long_description_content_type="text/markdown",
author = "Rana Awais",
author_email = "[email protected]",
author="Rana Awais",
author_email="[email protected]",
requires=['cryptography']
)

0 comments on commit 49e534a

Please sign in to comment.