forked from byt3bl33d3r/CrackMapExec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 1001 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
from setuptools import setup, find_packages
setup(name='crackmapexec',
version='3.1.3',
description='A swiss army knife for pentesting Windows/Active Directory environments',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
],
keywords='pentesting security windows smb active-directory',
url='http://github.com/byt3bl33d3r/CrackMapExec',
author='byt3bl33d3r',
author_email='[email protected]',
license='BSD',
packages=find_packages(include=[
"cme", "cme.*"
]),
install_requires=[
'impacket>=0.9.15',
'gevent',
'netaddr',
'pyOpenSSL',
'pycrypto',
'pyasn1',
'termcolor',
'requests',
'msgpack-python'
],
entry_points = {
'console_scripts': ['crackmapexec=cme.crackmapexec:main', 'cme=cme.crackmapexec:main', 'cmedb=cme.cmedb:main'],
},
include_package_data=True,
zip_safe=False)