mirror of
https://github.com/Pennyw0rth/NetExec
synced 2026-06-06 16:34:30 +00:00
6c0228f403
- Got rid of netaddr in favor of built in ipaddress module - cme/cmedb binaries are now built with shiv - Removed http protocol as it was basically useless and added another dependency
41 lines
1.1 KiB
Python
Executable File
41 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python2
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(name='crackmapexec',
|
|
version='5.0.1dev',
|
|
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',
|
|
'termcolor',
|
|
'msgpack',
|
|
'pylnk3',
|
|
'pywinrm',
|
|
'paramiko',
|
|
'impacket',
|
|
'xmltodict',
|
|
'terminaltables'
|
|
],
|
|
entry_points={
|
|
'console_scripts': ['crackmapexec=cme.crackmapexec:main', 'cme=cme.crackmapexec:main', 'cmedb=cme.cmedb:main'],
|
|
},
|
|
include_package_data=True,
|
|
zip_safe=False)
|