From a94f1214e425927226de75020e5e97f1be276b4f Mon Sep 17 00:00:00 2001 From: t0thkr1s Date: Wed, 8 Jan 2020 11:33:13 +0100 Subject: [PATCH] add setup.py --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e8631ee --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +from setuptools import setup + +setup( + name='gtfo', + version='1.0', + url='https://medium.com/infosec-adventures', + author='https://github.com/t0thkr1s', + author_email='t0thkr1s@icoud.com', + description='Command-line program for GTFOBins. It helps you to bypass system security restrictions.', + install_requires=['colorama', 'pygments'] +)