forked from fox-it/bloodhound-import
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 663 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 663 Bytes
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_import',
version='0.0.9',
description='BloodHound import from python',
license='MIT',
classifiers=[
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
author='Matthijs Gielen / Fox-IT',
author_email='matthijs.gielen@fox-it.com',
url='https://github.com/fox-it/bloodhound-import',
packages=['bloodhound_import'],
install_requires=['neo4j-driver', 'ijson'],
entry_points={
'console_scripts': ['bloodhound-import=bloodhound_import:__main__']
}
)