-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
executable file
·33 lines (29 loc) · 1.02 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
#!/usr/bin/env python
# Copyright (c) 2013
# - Zachary Cutlip <uid000@gmail.com>
# - Tactical Network Solutions, LLC
#
# See LICENSE.txt for more details.
#
from distutils.core import setup
setup(name='Bowcaster',
version='0.1',
description='Lightweight, cross-platform exploit development framework',
long_description=open('README.txt').read(),
author='Zachary Cutlip',
author_email="uid000@gmail.com",
package_dir = {'':'src'},
package_data={'':['contrib/C/*','contrib/asm/mips/*','common/hackers/hackers.txt']},
packages=['bowcaster',
'bowcaster.common',
'bowcaster.common.hackers',
'bowcaster.development',
'bowcaster.payloads',
'bowcaster.payloads.mips',
'bowcaster.encoders',
'bowcaster.servers',
'bowcaster.clients'],
scripts=["src/standalone/connectbackserver",
"src/standalone/httpserver",
"src/standalone/trojanserver"]
)