Fix silent flag
This commit is contained in:
parent
c3427fb22f
commit
6beb4932d7
|
@ -2,4 +2,4 @@ argparse
|
|||
dnspython
|
||||
requests
|
||||
bs4
|
||||
|
||||
requests[socks]
|
||||
|
|
6
setup.py
6
setup.py
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue