forked from cowrie/cowrie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·61 lines (59 loc) · 1.93 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
#!/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.*, !=3.6.*, <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==21.2.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==1.1.5"],
"dshield": ["requests"],
"elasticsearch": ["pyes"],
"mysql": ["mysqlclient"],
"mongodb": ["pymongo"],
"rethinkdblog": ["rethinkdb"],
"s3": ["botocore"],
"slack": ["slackclient"],
"influxdb": ["influxdb"],
},
)