Codebase list python-ldapdomaindump / d44f4b52-19e9-4d60-8405-c7350e3efae4/main setup.py
d44f4b52-19e9-4d60-8405-c7350e3efae4/main

Tree @d44f4b52-19e9-4d60-8405-c7350e3efae4/main (Download .tar.gz)

setup.py @d44f4b52-19e9-4d60-8405-c7350e3efae4/mainraw · history · blame

from setuptools import setup
setup(name='ldapdomaindump',
      version='0.9.1',
      description='Active Directory information dumper via LDAP',
      author='Dirk-jan Mollema',
      author_email='[email protected]',
      url='https://github.com/dirkjanm/ldapdomaindump/',
      packages=['ldapdomaindump'],
      install_requires=['dnspython', 'ldap3==2.5.1', 'future'],
      package_data={'ldapdomaindump': ['style.css']},
      include_package_data=True,
      scripts=['bin/ldapdomaindump', 'bin/ldd2bloodhound']
      )