forked from the-useless-one/pywerview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 1.23 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
40
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(name='pywerview',
version='0.2.0',
description='A Python port of PowerSploit\'s PowerView',
long_description=long_description,
dependency_links = ['https://github.com/CoreSecurity/impacket/tarball/master#egg=impacket-0.9.16dev'],
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2.7',
'Topic :: Security',
],
keywords='python powersploit pentesting recon active directory windows',
url='https://github.com/the-useless-one/pywerview',
author='Yannick Méheut',
author_email='[email protected]',
license='GNU GPLv3',
packages=find_packages(include=[
"pywerview", "pywerview.*"
]),
install_requires=[
'impacket>=0.9.16dev',
'pyasn1',
'pycrypto',
'pyopenssl',
'bs4'
],
entry_points = {
'console_scripts': ['pywerview=pywerview.cli.main:main'],
},
zip_safe=False)