forked from dirkjanm/BloodHound.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 793 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='bloodhound',
version='0.1.0',
description='Python based ingestor for BloodHound',
author='Edwin van Vliet, Dirk-jan Mollema, Matthijs Gielen',
url='https://github.com/fox-it/bloodhound.py',
packages=['bloodhound'],
license='MIT',
install_requires=['dnspython','impacket'],
classifiers=[
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'
],
entry_points= {
'console_scripts': ['bloodhound-python=bloodhound:main']
}
)