mirror of
https://github.com/varun-r-mallya/pylibbpf.git
synced 2026-02-12 16:11:00 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9fb3ab3238 | |||
| 596943d246 | |||
| 22ad94a64f | |||
| 20b505c314 | |||
| b827b3132e | |||
| 7606819006 |
@ -1,8 +1,7 @@
|
|||||||
include README.md LICENSE pybind11/LICENSE
|
include README.md LICENSE pybind11/LICENSE
|
||||||
graft pybind11/include
|
graft pybind11/include
|
||||||
graft pybind11/tools
|
graft pybind11/tools
|
||||||
recursive-include src *.cpp *.h
|
include LICENSE
|
||||||
recursive-include libbpf/src *.c *.h Makefile
|
|
||||||
recursive-include libbpf/include *.h
|
|
||||||
graft src
|
graft src
|
||||||
|
graft libbpf
|
||||||
global-include CMakeLists.txt *.cmake
|
global-include CMakeLists.txt *.cmake
|
||||||
|
|||||||
@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "pylibbpf"
|
name = "pylibbpf"
|
||||||
version = "0.0.1"
|
version = "0.0.4"
|
||||||
description = "Python Bindings for Libbpf"
|
description = "Python Bindings for Libbpf"
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "r41k0u", email = "pragyanshchaturvedi18@gmail.com" },
|
{ name = "r41k0u", email = "pragyanshchaturvedi18@gmail.com" },
|
||||||
|
|||||||
@ -2,6 +2,6 @@ import pylibbpf as m
|
|||||||
|
|
||||||
|
|
||||||
def test_main():
|
def test_main():
|
||||||
assert m.__version__ == "0.0.1"
|
assert m.__version__ == "0.0.4"
|
||||||
prog = m.BpfProgram("tests/execve2.o")
|
prog = m.BpfProgram("tests/execve2.o")
|
||||||
print(prog)
|
print(prog)
|
||||||
|
|||||||
Reference in New Issue
Block a user