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',
|
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',
|
2017-03-27 21:09:36 +00:00
|
|
|
author_email='byt3bl33d3r@protonmail.com',
|
2016-06-04 05:42:26 +00:00
|
|
|
license='BSD',
|
|
|
|
packages=find_packages(include=[
|
|
|
|
"cme", "cme.*"
|
|
|
|
]),
|
|
|
|
install_requires=[
|
2017-03-27 21:09:36 +00:00
|
|
|
'pycrypto>=2.6',
|
|
|
|
'pyasn1>=0.1.8',
|
|
|
|
'gevent>=1.2.0',
|
|
|
|
'bs4',
|
2016-06-04 05:42:26 +00:00
|
|
|
'netaddr',
|
|
|
|
'pyOpenSSL',
|
|
|
|
'termcolor',
|
2017-04-26 23:04:15 +00:00
|
|
|
'requests>=2.3.0',
|
2016-06-25 17:09:48 +00:00
|
|
|
'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)
|