forked from dirkjanm/BloodHound.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
setup(name='bloodhound',
version='1.0.5',
description='Python based ingestor for BloodHound',
author='Dirk-jan Mollema, Edwin van Vliet, Matthijs Gielen',
maintainer='Dirk-jan Mollema',
maintainer_email='[email protected]',
url='https://github.com/fox-it/bloodhound.py',
packages=['bloodhound',
'bloodhound.ad',
'bloodhound.lib',
'bloodhound.enumeration'],
license='MIT',
install_requires=['dnspython', 'impacket>=0.9.17', 'ldap3>=2.5,!=2.5.2,!=2.5.0,!=2.6', 'pyasn1>=0.4', 'future'],
classifiers=[
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
entry_points= {
'console_scripts': ['bloodhound-python=bloodhound:main']
}
)