forked from termuxhackers-id/INSTAHACK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 991 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 991 Bytes
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
from setuptools import setup, find_packages
setup(
name='ihack',
version='3.0.7',
author='Termux Hackers ID (@iqbalmh18)',
author_email='termuxhackers.id@gmail.com',
description='Python based tools for hacking instagram accounts',
long_description='InstaHack is a python based tools for hacking instagram accounts using brute force and dictionary attacks with private api from latest apk pinning',
url='https://github.com/termuxhackers-id/instahack',
packages=find_packages(),
include_package_data=True,
package_data={'instahack': ['ihack']},
install_requires=['rich','beaupy','glickey','ihackit','requests','prompt_toolkit'],
entry_points={
'console_scripts': [
'ihack = instahack.main:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.10,<3.11'
)