forked from cisco-sas/kitty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (47 loc) · 1.53 KB
/
setup.py
File metadata and controls
52 lines (47 loc) · 1.53 KB
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.7.1'
AUTHOR = 'Cisco SAS team'
EMAIL = 'kitty-fuzzer@googlegroups.com'
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', '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/*']}
)