-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (17 loc) · 735 Bytes
/
setup.py
File metadata and controls
17 lines (17 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages
setup(name='adwsdomaindump',
version='0.11.0',
description='Active Directory information dumper via ADWS',
author='mverschu',
author_email='',
url='https://github.com/dirkjanm/ldapdomaindump/',
packages=find_packages(),
requires_python=">=3.6",
install_requires=['dnspython', 'impacket>=0.11.0', 'pycryptodomex'],
package_data={'adwsdomaindump': ['style.css']},
include_package_data=True,
entry_points= {
'console_scripts': ['adwsdomaindump=adwsdomaindump:main','adwsd2bloodhound=adwsdomaindump.convert:ldd2bloodhound','adwsd2pretty=adwsdomaindump.pretty:main']
},
license="MIT",
)