From fdadfd256cac85d56419f31b3773cb7669b27c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6kberk=20Yalt=C4=B1rakl=C4=B1?= Date: Sun, 26 Apr 2015 12:56:31 +0300 Subject: [PATCH] Added 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..e15d976 --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +from distutils.core import setup +setup( + name = "Slowloris", + py_modules = ["slowloris"], + version = "0.1", + description = "Low bandwidth DoS tool. Slowloris rewrite in Python.", + author = "Gokberk Yaltirakli", + author_email = "webdosusb@gmail.com", + url = "https://github.com/gkbrk/slowloris", + keywords = ["dos", "http", "slowloris"] +)