This commit is contained in:
Dionysus 2025-02-11 02:50:13 -05:00
parent d773bb6b0c
commit e637ebc8c8
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
2 changed files with 3 additions and 3 deletions

View File

@ -6,4 +6,4 @@ from .scanner import HTTPZScanner
from .colors import Colors from .colors import Colors
__version__ = '1.0.7' __version__ = '1.0.8'

View File

@ -9,7 +9,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
setup( setup(
name='httpz_scanner', name='httpz_scanner',
version='1.0.7', version='1.0.8',
author='acidvegas', author='acidvegas',
author_email='acid.vegas@acid.vegas', author_email='acid.vegas@acid.vegas',
description='Hyper-fast HTTP Scraping Tool', description='Hyper-fast HTTP Scraping Tool',
@ -41,7 +41,7 @@ setup(
], ],
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'httpz=httpz_scanner.__main__:cli', 'httpz=httpz_scanner.cli:run',
], ],
}, },
) )