4 Commits

Author SHA1 Message Date
596943d246 update version in test 2025-09-21 15:26:05 +05:30
22ad94a64f Merge remote-tracking branch 'origin/master' 2025-09-21 15:22:20 +05:30
20b505c314 Update MANIFEST.in 2025-09-21 15:21:57 +05:30
b827b3132e Update MANIFEST.in 2025-09-21 15:21:12 +05:30
3 changed files with 8 additions and 3 deletions

View File

@ -1,8 +1,13 @@
include README.md LICENSE pybind11/LICENSE include README.md LICENSE pybind11/LICENSE
graft pybind11/include graft pybind11/include
graft pybind11/tools graft pybind11/tools
include LICENSE
recursive-include src *.cpp *.h recursive-include src *.cpp *.h
recursive-include libbpf/src *.c *.h Makefile recursive-include libbpf/src *.c *.h *.map Makefile
recursive-include libbpf/include *.h recursive-include libbpf/include *.h
include libbpf/README.md
include libbpf/LICENSE
include libbpf/LICENSE.BSD-2-Clause
include libbpf/LICENSE.LGPL-2.1
graft src graft src
global-include CMakeLists.txt *.cmake global-include CMakeLists.txt *.cmake

View File

@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "pylibbpf" name = "pylibbpf"
version = "0.0.2" version = "0.0.3"
description = "Python Bindings for Libbpf" description = "Python Bindings for Libbpf"
authors = [ authors = [
{ name = "r41k0u", email = "pragyanshchaturvedi18@gmail.com" }, { name = "r41k0u", email = "pragyanshchaturvedi18@gmail.com" },

View File

@ -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.3"
prog = m.BpfProgram("tests/execve2.o") prog = m.BpfProgram("tests/execve2.o")
print(prog) print(prog)