Codebase list python-ldapdomaindump / 4672c5fe-d375-47e8-baeb-4019816c8565/main setup.py
4672c5fe-d375-47e8-baeb-4019816c8565/main

Tree @4672c5fe-d375-47e8-baeb-4019816c8565/main (Download .tar.gz)

setup.py @4672c5fe-d375-47e8-baeb-4019816c8565/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']
      )