From f88bfa0521eea7822247257c6589c153329c5d31 Mon Sep 17 00:00:00 2001 From: Karthikeyan C <114332111+cyber-karthi@users.noreply.github.com> Date: Fri, 21 Jun 2024 14:05:20 +0530 Subject: [PATCH] Add files via upload --- setup.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..2126502 --- /dev/null +++ b/setup.py @@ -0,0 +1,31 @@ +from setuptools import setup + +VERSION = '0.0.1' +DESCRIPTION = 'A Tool to find an Easy Bounty - CVE-2024-0352' +LONG_DESCRIPTION = 'This is a tool used by several security researchers to find CVE-2024-0352.' + +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + +setup( + name="CVE-2024-0352", + version=VERSION, + author="@karthithehacker", + author_email="", + long_description=long_description, + long_description_content_type="text/markdown", + entry_points={ + 'console_scripts': [ + 'CVE-2024-0352 = cve20240352.main:main', + ], + }, + install_requires=['urllib3', 'requests', 'click'], + classifiers=[ + "Development Status :: 1 - Planning", + "Intended Audience :: Developers", + "Programming Language :: Python :: 3", + "Operating System :: Unix", + "Operating System :: MacOS :: MacOS X", + "Operating System :: Microsoft :: Windows", + ] +) \ No newline at end of file