forked from byt3bl33d3r/CrackMapExec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (41 loc) · 1.16 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(name='crackmapexec',
version='5.1.0dev',
description='A swiss army knife for pentesting networks',
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Security',
],
keywords='pentesting security windows active-directory networks',
url='http://github.com/byt3bl33d3r/CrackMapExec',
author='byt3bl33d3r',
author_email='byt3bl33d3r@protonmail.com',
license='BSD',
packages=find_packages(include=[
"cme", "cme.*"
]),
install_requires=[
'gevent>=1.2.0',
'requests>=2.9.1',
'requests-ntlm>=0.3.0',
'bs4',
'lsassy',
'termcolor',
'msgpack',
'neo4j',
'pylnk3',
'pypsrp',
'paramiko',
'impacket',
'xmltodict',
'terminaltables',
'lsassy'
],
entry_points={
'console_scripts': ['crackmapexec=cme.crackmapexec:main', 'cme=cme.crackmapexec:main', 'cmedb=cme.cmedb:main'],
},
include_package_data=True,
zip_safe=False)