forked from cowrie/cowrie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (45 loc) · 1.87 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup (
name = "Cowrie",
version = "1.0",
description = "Cowrie SSH/Telnet Honeypot.",
maintainer = "Michel Oosterhof",
maintainer_email = "[email protected]",
keywords = "ssh telnet honeypot",
url = "https://github.com/micheloosterhof/cowrie",
packages = find_packages(),
include_package_data=True,
package_data = { '': ['*.md'] },
scripts = ["bin/fsctl",
"bin/asciinema",
"bin/cowrie",
"bin/createfs",
"bin/playlog"],
install_requires = ["twisted>=17.1.0",
"cryptography>=0.9.1",
"configparser",
"pyopenssl",
"pyparsing",
"packaging",
"appdirs>=1.4.0",
"python-pyasn1",
"python-gmpy2",
"python-mysqldb",
"klein>=15.0.0",
"treq>=15.0.0",
"python-dateutil",
"service_identity>=14.0.0"],
entry_points = {'console_scripts':
['run-the-app = deployme:main']},
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"]}
)