forked from cisco-sas/kitty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (47 loc) · 1.55 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
import os
import sys
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
VERSION = '0.6.7'
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'
# python 3 - install only the remote package
if sys.version_info >= (3,):
setup(
name='kittyfuzzer-remote',
version=VERSION,
description='Kitty remote agent for python 3',
long_description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
url=URL,
packages=['kitty/remote'],
install_requires=['docopt', 'six', 'requests'],
keywords=KEYWORDS,
)
# python 2 - install full kitty framework
else:
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!=3.1.4', 'six', 'requests'],
keywords=KEYWORDS,
entry_points={
'console_scripts': [
'kitty-web-client=bin.kitty_web_client:_main',
'kitty-template-tester=bin.kitty_template_tester:_main',
'kitty-tool=bin.kitty_tool:_main',
]
},
package_data={'kitty': ['interfaces/web/static/*', 'interfaces/web/images/*']}
)