-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7de1852
commit f88bfa0
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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="<[email protected]>", | ||
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", | ||
] | ||
) |