mirror of https://github.com/Askill/slowloris.git
13 lines
434 B
Python
13 lines
434 B
Python
from distutils.core import setup
|
|
setup(
|
|
name = "Slowloris",
|
|
py_modules = ["slowloris"],
|
|
entry_points = {"console_scripts": ["slowloris=slowloris:main"]},
|
|
version = "0.1.6",
|
|
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"]
|
|
)
|