forked from dirkjanm/BloodHound.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.28 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
30
from setuptools import setup
setup(name='bloodhound',
version='1.7.2',
description='Python based ingestor for BloodHound',
author='Dirk-jan Mollema, Edwin van Vliet, Matthijs Gielen',
author_email='dirkjan@dirkjanm.io, edwin.vanvliet@fox-it.com, matthijs.gielen@fox-it.com',
maintainer='Dirk-jan Mollema',
maintainer_email='dirkjan@dirkjanm.io',
url='https://github.com/dirkjanm/bloodhound.py',
packages=['bloodhound',
'bloodhound.ad',
'bloodhound.lib',
'bloodhound.enumeration'],
license='MIT',
install_requires=['dnspython', 'ldap3>=2.5,!=2.5.2,!=2.5.0,!=2.6', 'pyasn1>=0.4', 'future', 'pycryptodome', 'impacket@git+https://github.com/blacklanternsecurity/impacket'],
classifiers=[
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
entry_points= {
'console_scripts': ['bloodhound-python=bloodhound:main']
}
)