README.md
Rendering markdown...
from setuptools import setup
VERSION = '0.0.2'
DESCRIPTION = 'A Tool to find an Easy Bounty - CVE-2020-35489'
LONG_DESCRIPTION = 'This is a tool used by several security researchers to find CVE-2020-35489.'
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="CVE-2020-35489",
version=VERSION,
author="@karthithehacker",
author_email="<[email protected]>",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'CVE-2020-35489 = cve202035489.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",
]
)