forked from the-useless-one/pywerview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.22 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
long_description = open('README.md').read()
setup(name='pywerview',
version='0.4.1',
description='A Python port of PowerSploit\'s PowerView',
long_description=long_description,
long_description_content_type='text/markdown',
dependency_links = ['https://github.com/SecureAuthCorp/impacket/tarball/master#egg=impacket-0.9.22'],
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.6',
'Topic :: Security',
],
keywords='python powersploit pentesting recon active directory windows',
url='https://github.com/the-useless-one/pywerview',
author='Yannick Méheut',
author_email='yannick@meheut.org',
license='GNU GPLv3',
packages=find_packages(include=[
"pywerview", "pywerview.*"
]),
install_requires=[
'impacket>=0.9.22',
'beautifulsoup4',
'lxml',
'pyasn1',
'ldap3>=2.8.1',
'gssapi',
'pycryptodome',
],
entry_points = {
'console_scripts': ['pywerview=pywerview.cli.main:main'],
},
zip_safe=False)