forked from cowrie/cowrie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·57 lines (54 loc) · 1.4 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·57 lines (54 loc) · 1.4 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
53
54
55
56
57
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="Cowrie",
version="1.0",
description="Cowrie SSH/Telnet Honeypot.",
maintainer="Michel Oosterhof",
maintainer_email="michel@oosterhof.net",
keywords="ssh telnet honeypot",
url="https://github.com/cowrie/cowrie",
packages=find_packages('src'),
include_package_data=True,
package_dir={'': 'src'},
package_data={'': ['*.md']},
use_incremental=True,
scripts=[
'bin/fsctl',
'bin/asciinema',
'bin/cowrie',
'bin/createfs',
'bin/playlog'
],
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'
],
entry_points={
'console_scripts': ['cowrie = cowrie.scripts.cowrie:run']
},
extras_require={
'csirtg': ['csirtgsdk>=0.0.0a17'],
'dshield': ['requests'],
'elasticsearch': ['pyes'],
'mysql': ['mysqlclient'],
'mongodb': ['pymongo'],
'rethinkdblog': ['rethinkdb'],
's3': ['botocore'],
'slack': ['slackclient'],
'splunklegacy': ['splunk-sdk'],
'influxdb': ['influxdb']
}
)