Added setup.py

This commit is contained in:
Gökberk Yaltıraklı 2015-04-26 12:56:31 +03:00
parent f5b884ceaf
commit fdadfd256c
1 changed files with 11 additions and 0 deletions

11
setup.py Normal file
View File

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