forked from cowrie/cowrie
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·70 lines (68 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
from setuptools import setup
setup(
name="Cowrie",
description="Cowrie SSH/Telnet Honeypot.",
long_description="Cowrie SSH/Telnet Honeypot.",
author="Michel Oosterhof",
author_email="[email protected]",
maintainer="Michel Oosterhof",
maintainer_email="[email protected]",
keywords="ssh telnet honeypot",
platforms="Unix, Mac OSX",
license="BSD",
url="https://www.cowrie.org/",
packages=['cowrie', 'twisted'],
include_package_data=True,
package_dir={'': 'src'},
package_data={'': ['*.md']},
use_incremental=True,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4',
scripts=[
'bin/fsctl',
'bin/asciinema',
'bin/cowrie',
'bin/createfs',
'bin/playlog'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
'Framework :: Twisted',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Security',
],
setup_requires=[
'incremental',
'click'
],
install_requires=[
'twisted>=17.1.0',
'cryptography>=0.9.1',
'configparser',
'pyopenssl',
'pyparsing',
'incremental',
'packaging',
'appdirs>=1.4.0',
'python-dateutil',
'service_identity>=14.0.0'
],
extras_require={
'csirtg': ['csirtgsdk>=0.0.0a17'],
'dshield': ['requests'],
'elasticsearch': ['pyes'],
'mysql': ['mysqlclient'],
'mongodb': ['pymongo'],
'rethinkdblog': ['rethinkdb'],
's3': ['botocore'],
'slack': ['slackclient'],
'influxdb': ['influxdb']
}
)