-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
29 lines (27 loc) · 803 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='shellfire',
version='0.13',
description=(
'shellfire is an exploitation shell focusing on exploiting command '
'injection vulnerabilities, eg., LFI, RFI, SSTI, etc.'
),
url='/~https://github.com/unix-ninja/shellfire',
author='unix-ninja',
author_email='chris@unix-ninja.com',
license='BSD',
python_requires='>=3.8.0',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"shellfire=shellfire:cli"
]
},
install_requires=[
'requests'
]
)