File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments