Fix silent flag
This commit is contained in:
parent
c3427fb22f
commit
6beb4932d7
|
@ -2,4 +2,4 @@ argparse
|
||||||
dnspython
|
dnspython
|
||||||
requests
|
requests
|
||||||
bs4
|
bs4
|
||||||
|
requests[socks]
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -3,8 +3,8 @@ from setuptools import setup, find_packages
|
||||||
setup(
|
setup(
|
||||||
name='Sublist3r',
|
name='Sublist3r',
|
||||||
version='2.1',
|
version='2.1',
|
||||||
python_requires='>=2.7',
|
python_requires='>=3.10',
|
||||||
install_requires=['dnspython', 'requests', 'argparse; python_version==\'2.7\''],
|
install_requires=['dnspython', 'requests', 'argparse; python_version==\'3.10\',requests[socks]'],
|
||||||
packages=find_packages()+['.'],
|
packages=find_packages()+['.'],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
url='https://github.com/fmjal/Sublist3r',
|
url='https://github.com/fmjal/Sublist3r',
|
||||||
|
@ -25,6 +25,8 @@ setup(
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.10',
|
||||||
|
'Programming Language :: Python :: 3.11',
|
||||||
'Topic :: Security',
|
'Topic :: Security',
|
||||||
],
|
],
|
||||||
keywords='subdomain dns detection',
|
keywords='subdomain dns detection',
|
||||||
|
|
Loading…
Reference in New Issue