Codebase list pywerview / 3c3eff8c-d28a-4717-a0c5-0b5d323897b2/main setup.py
3c3eff8c-d28a-4717-a0c5-0b5d323897b2/main

Tree @3c3eff8c-d28a-4717-a0c5-0b5d323897b2/main (Download .tar.gz)

setup.py @3c3eff8c-d28a-4717-a0c5-0b5d323897b2/mainraw · history · blame

#!/usr/bin/env python3

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.3.1',
    description='A Python port of PowerSploit\'s PowerView',
    long_description=long_description,
    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='[email protected]',
    license='GNU GPLv3',
    packages=find_packages(include=[
        "pywerview", "pywerview.*"
    ]),
    install_requires=[
        'impacket>=0.9.22',
        'pyasn1',
        'pycrypto',
        'pyopenssl',
        'bs4',
        'ldap3>=2.8.1'
    ],
    entry_points = {
        'console_scripts': ['pywerview=pywerview.cli.main:main'],
    },
    zip_safe=False)