-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (52 loc) · 1.81 KB
/
setup.py
File metadata and controls
54 lines (52 loc) · 1.81 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='gtfobins-cli',
version='1.1.0',
url='https://github.com/kasem545/gtfobins-cli',
author='t0thkr1s',
author_email='t0thkr1s@icloud.com',
maintainer='kasem545',
maintainer_email='kasem545@proton.me',
description='Command-line tool for GTFOBins - Unix binaries exploitation helper',
long_description=long_description,
long_description_content_type='text/markdown',
license='GPL-3.0',
packages=find_packages(),
package_data={
'gtfo': ['data/*.json'],
},
include_package_data=True,
install_requires=[
'colorama>=0.4.0',
'pygments>=2.0.0'
],
entry_points={
'console_scripts': [
'gtfo=gtfo.cli:main',
],
},
python_requires='>=3.6',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Security',
'Topic :: System :: System Shells',
'Topic :: Utilities',
],
keywords='gtfobins security exploitation privilege-escalation pentesting',
)