forked from cisco-sas/kitty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 1000 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
VERSION = '0.7.4'
AUTHOR = 'Cisco SAS team'
EMAIL = '[email protected]'
URL = 'https://github.com/cisco-sas/kitty.git'
DESCRIPTION = read('README.rst')
KEYWORDS = 'fuzz,fuzzing,framework,sulley,kitty,kittyfuzzer,security'
setup(
name='kittyfuzzer',
version=VERSION,
description='Kitty fuzzing framework',
long_description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
url=URL,
packages=find_packages(),
install_requires=['docopt', 'bitstring', 'six', 'requests'],
keywords=KEYWORDS,
entry_points={
'console_scripts': [
'kitty-web-client=kitty.bin.kitty_web_client:_main',
'kitty-template-tester=kitty.bin.kitty_template_tester:_main',
'kitty-tool=kitty.bin.kitty_tool:_main',
]
},
package_data={'kitty': ['interfaces/web/static/*']}
)