forked from qeeqbox/honeypots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 823 Bytes
/
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
from setuptools import setup, find_packages
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='honeypots',
author='QeeqBox',
author_email='gigaqeeq@gmail.com',
description="Easy to setup honeypots!",
long_description=long_description,
version='0.6',
license="AGPL-3.0",
url="https://github.com/qeeqbox/honeypots",
packages=['honeypots'],
include_package_data=True,
entry_points={
"console_scripts": [
"honeypots = honeypots.__main__:main"
]
},
install_requires=[
'pipenv',
'twisted',
'psutil',
'psycopg2-binary',
'dnspython',
'requests',
'impacket',
'paramiko==2.7.1',
'redis',
'mysql-connector',
'pycryptodome',
'vncdotool',
'service_identity',
'requests[socks]',
'pygments'
],
python_requires='>=3'
)