diff --git a/README.md b/README.md index 052de95..496b806 100644 --- a/README.md +++ b/README.md @@ -340,6 +340,7 @@ Bopscrk: [https://github.com/r3nt0n/bopscrk](https://github.com/r3nt0n/bopscrk) ## Acknowledgments * lyricpass module is based on a [project](https://github.com/initstring/lyricpass) created by [initstring](https://github.com/initstring) +* [Pixel Gothic font](https://dafonttop.com/pixel-gothic-font.font) by [Kajetan Andrzejak](https://dafonttop.com/tags.php?key=Kajetan%20Andrzejak)
diff --git a/bopscrk/bopscrk.py b/bopscrk/bopscrk.py index 687880a..92dd2f9 100644 --- a/bopscrk/bopscrk.py +++ b/bopscrk/bopscrk.py @@ -3,24 +3,22 @@ # https://github.com/r3nt0n/bopscrk # bopscrk - init script -#import sys, os, datetime - -""" -Before Outset PaSsword CRacKing is a tool to assist in the previous process of cracking passwords. -""" name = 'bopscrk.py' -__author__ = 'r3nt0n' +desc = 'A tool to generate smart and powerful wordlists for targeted attacks' __version__ = '2.4.5' +__author__ = 'r3nt0n' __status__ = 'Development' def start(): try: from .modules import main - # catching except when running python3 bopscrk.py (sketchy, need some refactor) except ImportError: + # catching except when running python3 bopscrk.py + # (sketchy, need some refactor) from modules import main + main.run(name, __version__) diff --git a/setup.py b/setup.py index 0f9bd37..08e439e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ # packages with python3 setup.py -v sdist from setuptools import setup, find_packages -from bopscrk.bopscrk import __version__ +from bopscrk.bopscrk import __version__, desc # Read project description with open('README.md', 'r') as f: @@ -13,16 +13,17 @@ setup( name='bopscrk', + version=__version__, + url='https://github.com/r3nt0n/bopscrk', author='r3nt0n', author_email='r3nt0n@protonmail.com', - url='https://github.com/r3nt0n/bopscrk', - version=__version__, license='GNU General Public License v3.0', + description=desc, long_description=long_desc, long_description_content_type="text/markdown", include_package_data=True, package_data={ - # If any package contains *.ini files, include them + # If any package contains *.cfg files, include them '': ['*.cfg'], }, #packages=['modules',],