Fix silent flag

This commit is contained in:
user 2024-08-01 17:23:49 +02:00
parent c3427fb22f
commit 6beb4932d7
2 changed files with 5 additions and 3 deletions

View File

@ -2,4 +2,4 @@ argparse
dnspython
requests
bs4
requests[socks]

View File

@ -3,8 +3,8 @@ from setuptools import setup, find_packages
setup(
name='Sublist3r',
version='2.1',
python_requires='>=2.7',
install_requires=['dnspython', 'requests', 'argparse; python_version==\'2.7\''],
python_requires='>=3.10',
install_requires=['dnspython', 'requests', 'argparse; python_version==\'3.10\',requests[socks]'],
packages=find_packages()+['.'],
include_package_data=True,
url='https://github.com/fmjal/Sublist3r',
@ -25,6 +25,8 @@ setup(
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Security',
],
keywords='subdomain dns detection',