from setuptools import setup, find_packages setup( name='cve-2025-59718-exploit', version='0.1.0', description='Proof-of-Concept Exploit for CVE-2025-59718 in Fortinet Products', long_description=open('README.md').read(), long_description_content_type='text/markdown', author='Your Name', author_email='your.email@example.com', url='https://github.com/yourusername/cve-2025-59718-exploit', # Replace with actual repo URL if applicable packages=find_packages(), install_requires=[ 'requests==2.32.3', 'argparse', # Included as it's used in the script ], entry_points={ 'console_scripts': [ 'cve-exploit = exploit:main', # Assuming the script file is named exploit.py ], }, classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License', # Adjust license as needed 'Operating System :: OS Independent', ], python_requires='>=3.8', )