Skip to content

Commit 0fa4c41

Browse files
authored
Add files via upload
Done
1 parent 9c6c86a commit 0fa4c41

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
from setuptools import setup
2+
3+
VERSION = '0.0.1'
4+
DESCRIPTION = 'A Tool to find an Easy Bounty - CVE-2024-4956'
5+
LONG_DESCRIPTION = 'This is a tool used by several security researchers to find CVE-2024-4956.'
6+
7+
with open("README.md", "r", encoding="utf-8") as fh:
8+
long_description = fh.read()
9+
10+
setup(
11+
name="CVE-2024-4956",
12+
version=VERSION,
13+
author="@karthithehacker",
14+
author_email="<contact@karthithehacker.com>",
15+
long_description=long_description,
16+
long_description_content_type="text/markdown",
17+
entry_points={
18+
'console_scripts': [
19+
'CVE-2024-4956 = cve20244956.main:main',
20+
],
21+
},
22+
install_requires=['urllib3', 'requests', 'click'],
23+
classifiers=[
24+
"Development Status :: 1 - Planning",
25+
"Intended Audience :: Developers",
26+
"Programming Language :: Python :: 3",
27+
"Operating System :: Unix",
28+
"Operating System :: MacOS :: MacOS X",
29+
"Operating System :: Microsoft :: Windows",
30+
]
31+
)

0 commit comments

Comments
 (0)