Skip to content

Commit 715009b

Browse files
authored
Add files via upload
Done
1 parent 195df45 commit 715009b

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.2'
4+
DESCRIPTION = 'A Tool to find an Easy Bounty - phpinfo-file-leaks'
5+
LONG_DESCRIPTION = 'This is a tool used by several security researchers to find phpinfo-file-leaks.'
6+
7+
with open("README.md", "r", encoding="utf-8") as fh:
8+
long_description = fh.read()
9+
10+
setup(
11+
name="phpinfo-file-leaks",
12+
version=VERSION,
13+
author="@karthithehacker",
14+
author_email="<[email protected]>",
15+
long_description=long_description,
16+
long_description_content_type="text/markdown",
17+
entry_points={
18+
'console_scripts': [
19+
'phpinfo-file-leaks = phpinfofileleaks.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)