httpz- Hyper-fast HTTP Scraping Tool |
git clone git://git.acid.vegas/httpz.git |
Log | Files | Refs | Archive | README | LICENSE |
setup.py (1510B)
1 #!/usr/bin/env python3 2 # HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz) 3 # setup.py 4 5 from setuptools import setup, find_packages 6 7 8 with open('README.md', 'r', encoding='utf-8') as f: 9 long_description = f.read() 10 11 setup( 12 name='httpz_scanner', 13 version='2.1.8', 14 author='acidvegas', 15 author_email='acid.vegas@acid.vegas', 16 description='Hyper-fast HTTP Scraping Tool', 17 long_description=long_description, 18 long_description_content_type='text/markdown', 19 url='https://github.com/acidvegas/httpz', 20 packages=find_packages(), 21 classifiers=[ 22 'Development Status :: 5 - Production/Stable', 23 'Environment :: Console', 24 'Intended Audience :: Information Technology', 25 'License :: OSI Approved :: ISC License (ISCL)', 26 'Operating System :: OS Independent', 27 'Programming Language :: Python :: 3', 28 'Programming Language :: Python :: 3.8', 29 'Programming Language :: Python :: 3.9', 30 'Programming Language :: Python :: 3.10', 31 'Programming Language :: Python :: 3.11', 32 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 33 'Topic :: Security', 34 ], 35 python_requires='>=3.8', 36 install_requires=[ 37 'aiohttp>=3.8.0', 38 'beautifulsoup4>=4.9.3', 39 'cryptography>=3.4.7', 40 'dnspython>=2.1.0', 41 'mmh3>=3.0.0', 42 ], 43 entry_points={ 44 'console_scripts': [ 45 'httpz=httpz_scanner.cli:run', 46 ], 47 }, 48 )