forked from byt3bl33d3r/CrackMapExec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·44 lines (42 loc) · 1.21 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
#!/usr/bin/env python2
from setuptools import setup, find_packages
setup(name='crackmapexec',
version='4.0.1dev',
description='A swiss army knife for pentesting networks',
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Topic :: Security',
],
keywords='pentesting security windows active-directory networks',
url='http://github.com/byt3bl33d3r/CrackMapExec',
author='byt3bl33d3r',
author_email='[email protected]',
license='BSD',
packages=find_packages(include=[
"cme", "cme.*"
]),
install_requires=[
'pycryptodomex',
'pyasn1>=0.1.8',
'gevent>=1.2.0',
'requests>=2.9.1',
'requests-ntlm>=0.3.0',
'bs4',
'netaddr',
'pyOpenSSL',
'termcolor',
'msgpack-python',
'pylnk',
'splinter',
'paramiko',
'xmltodict',
'six',
'terminaltables'
],
entry_points={
'console_scripts': ['crackmapexec=cme.crackmapexec:main', 'cme=cme.crackmapexec:main', 'cmedb=cme.cmedb:main'],
},
include_package_data=True,
zip_safe=False)