-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (32 loc) · 992 Bytes
/
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
31
32
33
34
35
36
37
#!/usr/bin/env python
"""PyVelociraptor are the python bindings for talking with Velociraptor."""
__author__ = "Velocidex <[email protected]>"
import io
from distutils.core import setup
setup(
name="pyvelociraptor",
version="0.1.8",
packages=['pyvelociraptor'],
description="PyVelociraptor is the python binding for the Velociraptor API",
license="GPL",
url="https://github.com/Velocidex/pyvelociraptor",
author="The Velociraptor Team",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=[
"grpcio",
"grpcio-tools",
"pyyaml",
"cryptography",
],
entry_points="""
[console_scripts]
pyvelociraptor = pyvelociraptor.client_example:main
pyvelociraptor_push_event = pyvelociraptor.push_event:main
""",
)