-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·22 lines (21 loc) · 1.06 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
#!/usr/bin/env python
# Copyright (C) 2013-2014 Reinhard Stampp
# Copyright (C) 2014-2016 Sascha Kopp
# This file is part of hystck - http://hystck.fbi.h-da.de
# See the file 'docs/LICENSE' for copying permission.
from distutils.core import setup
setup(
name='hystck',
version='1.0',
packages=['hystck', 'hystck.attacks', 'hystck.botnet', 'hystck.botnet.net', 'hystck.botnet.net.meta', 'hystck.botnet.net.proto',
'hystck.core', 'hystck.generator', 'hystck.botnet.common', 'hystck.botnet.core', 'hystck.botnet.core.bmoncomponents',
'hystck.utility', 'hystck.application', 'hystck.inputDevice', 'hystck.botnet.bots',
'hystck.botnet.bots.hellobot', 'hystck.botnet.bots.mariposa', 'hystck.botnet.bots.zeus'],
package_dir={'hystck': 'src/hystck'},
package_data={'hystck': ['utility/conf/*']},
url='hystck.fbi.h-da.de',
license='',
author='Reinhard Stampp, Sascha Kopp',
author_email='reinhard.stampp@rstampp.net, sascha.kopp@stud.h-da.de',
description='Python bindings for hystck.'
)