Skip to content

Commit

Permalink
Adding references + improving setup.py (including short desc)
Browse files Browse the repository at this point in the history
  • Loading branch information
r3nt0n committed Aug 2, 2022
1 parent 6336e86 commit a58edca
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

<p align="right">(<a href="#top">back to top</a>)</p>

Expand Down
12 changes: 5 additions & 7 deletions bopscrk/bopscrk.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)


Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,25 @@
# 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:
long_desc = f.read()

setup(
name='bopscrk',
version=__version__,
url='https://github.com/r3nt0n/bopscrk',
author='r3nt0n',
author_email='[email protected]',
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',],
Expand Down

0 comments on commit a58edca

Please sign in to comment.