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'] +)