-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (30 loc) · 877 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (30 loc) · 877 Bytes
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="nitro",
version="0.0.1",
author="F-Secure Corporation",
author_email="mathieu.tarral@gmail.com",
description="Hypervisor based tracing and monitoring prototype to trap guest syscalls and analyze them",
url="https://github.com/KVM-VMI/nitro",
packages=find_packages(),
setup_requires=["cffi>=1.0.0"],
cffi_modules=["nitro/build_libvmi.py:ffibuilder"],
entry_points={
"console_scripts": [
"nitro = main:main"
]
},
install_requires=[
'cffi>=1.0.0',
'docopt',
'libvirt-python',
'ioctl_opt',
'psutil'
],
extras_require={
"docs": ["sphinx", "sphinx_rtd_theme"],
"tests": ["nose2"]
},
keywords=["nitro", "hyperisor", "monitoring", "tracing", "syscall"]
)