Codebase list python-ldapdomaindump / 391bdde6-c6ed-400d-a491-25f8d0738ea8/upstream setup.py
391bdde6-c6ed-400d-a491-25f8d0738ea8/upstream

Tree @391bdde6-c6ed-400d-a491-25f8d0738ea8/upstream (Download .tar.gz)

setup.py @391bdde6-c6ed-400d-a491-25f8d0738ea8/upstreamraw · history · blame

from setuptools import setup
setup(name='ldapdomaindump',
      version='0.9.3',
      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,!=2.5.2,!=2.5.0,!=2.6', 'future'],
      package_data={'ldapdomaindump': ['style.css']},
      include_package_data=True,
      scripts=['bin/ldapdomaindump', 'bin/ldd2bloodhound', 'bin/ldd2pretty']
      )