-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
59 lines (47 loc) · 1.34 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
from setuptools import setup, find_packages
long_description = """
DemonHunter is a framework to create a Honeypot network very simple and easy.
"""
requirements = [
"httptools==0.0.11",
"aiohttp==2.3.10",
"bcrypt==3.1.4",
"flask==0.12.2",
"flask-login==0.4.1",
"flask-sqlalchemy==2.3.2",
"flask-sockets==0.2.1",
"meinheld==0.6.1",
"click==6.7",
]
setup(
name='demonhunter',
version='2.0.3',
description='A Distributed Honeypot',
long_description=long_description,
url='https://github.com/RevengeComing/DemonHunter',
author='Sepehr Hamzelooy',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
install_requires=requirements,
packages=find_packages(),
keywords='honeypot honeynet agent',
scripts = [
'bin/dh_run'
],
package_data = {
'': ['*.html', '*.js', '*.css'],
'demonhunter': [
'nodes/honeypots/http/nginx/*.html',
'nodes/honeypots/http/apache/*.html',
'nodes/master/templates/*',
'nodes/master/static/css/*',
'nodes/master/static/js/*'
],
}
)