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