-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 895 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
#!/usr/bin/python
try: from setuptools import setup
except:
print ('"setuptools" library is not found ! try installing . . .')
import os
os.system('pip install setuptools') # if not exists
finally: from setuptools import setup
setup(
name='felfel-framework',
version='1.0.1',
author='https://github.com/Fel-Fel',
author_email='felfel@onionmail.com',
description='fucking py3 script for generating reverse shells easily and automating the boring stuff like '
'setting up a listener & try to give shell from fucking systems. xd',
social_media = "404 not found.",
install_requires=['colorama',
'requests',
'ngrok',
'',
'',
'',
'',
'',
'',
'']
)