5 Commits

Author SHA1 Message Date
9fb3ab3238 manifest fixing for release working
Signed-off-by: varun-r-mallya <varunrmallya@gmail.com>
2025-09-21 15:35:40 +05:30
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 4 additions and 5 deletions

View File

@ -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

View File

@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "pylibbpf" name = "pylibbpf"
version = "0.0.2" 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" },

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