2016-06-04 05:42:26 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(name='crackmapexec',
|
2016-12-15 07:28:00 +00:00
|
|
|
version='4.0.0dev',
|
|
|
|
description='A swiss army knife for pentesting networks',
|
|
|
|
dependency_links = ['https://github.com/CoreSecurity/impacket/tarball/master#egg=impacket-0.9.16dev',
|
|
|
|
'https://github.com/the-useless-one/pywerview/tarball/master#egg=pywerview-0.1.1'],
|
2016-06-04 05:42:26 +00:00
|
|
|
classifiers=[
|
2016-12-15 07:28:00 +00:00
|
|
|
'Environment :: Console',
|
2016-06-04 05:42:26 +00:00
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2016-12-15 07:28:00 +00:00
|
|
|
'Topic :: Security',
|
2016-06-04 05:42:26 +00:00
|
|
|
],
|
2016-12-15 07:28:00 +00:00
|
|
|
keywords='pentesting security windows smb active-directory networks',
|
2016-06-04 05:42:26 +00:00
|
|
|
url='http://github.com/byt3bl33d3r/CrackMapExec',
|
|
|
|
author='byt3bl33d3r',
|
|
|
|
author_email='byt3bl33d3r@gmail.com',
|
|
|
|
license='BSD',
|
|
|
|
packages=find_packages(include=[
|
|
|
|
"cme", "cme.*"
|
|
|
|
]),
|
|
|
|
install_requires=[
|
2016-12-15 07:28:00 +00:00
|
|
|
'impacket>=0.9.16dev',
|
|
|
|
'pywerview>=0.1.1',
|
2016-06-04 05:42:26 +00:00
|
|
|
'gevent',
|
|
|
|
'netaddr',
|
|
|
|
'pyOpenSSL',
|
|
|
|
'pycrypto',
|
|
|
|
'pyasn1',
|
|
|
|
'termcolor',
|
2016-06-25 17:09:48 +00:00
|
|
|
'requests',
|
|
|
|
'msgpack-python'
|
2016-06-28 22:28:49 +00:00
|
|
|
],
|
2016-06-04 05:42:26 +00:00
|
|
|
entry_points = {
|
2016-08-02 15:07:40 +00:00
|
|
|
'console_scripts': ['crackmapexec=cme.crackmapexec:main', 'cme=cme.crackmapexec:main', 'cmedb=cme.cmedb:main'],
|
2016-06-04 05:42:26 +00:00
|
|
|
},
|
|
|
|
include_package_data=True,
|
2016-06-04 09:13:23 +00:00
|
|
|
zip_safe=False)
|