Skip to content

Commit

Permalink
adjusting version
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Angel committed Feb 6, 2022
1 parent c69c45d commit 12766e6
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()

# Read in all requirements from requirements.txt
with open('requirements.txt', 'r', encoding='utf-8') as f:
install_requires = [l.strip() for l in f]

setuptools.setup(
name='bl-bfg',
version='0.0.1',
version='0.1',
author='Justin Angel',
author_email='[email protected]',
description='A simple password guessing framework.',
Expand All @@ -26,5 +22,7 @@
'Operating System :: POSIX :: Linux',
],
python_requires='>=3.7',
install_requires=install_requires
install_requires=['requests_ntlm',
'bruteloops',
'pysmb==1.1.27']
)

0 comments on commit 12766e6

Please sign in to comment.