diff --git a/MANIFEST.in b/MANIFEST.in index 3b52d07..54b2ce0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,12 +2,6 @@ include README.md LICENSE pybind11/LICENSE graft pybind11/include graft pybind11/tools include LICENSE -recursive-include src *.cpp *.h -recursive-include libbpf/src *.c *.h *.map Makefile -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 libbpf global-include CMakeLists.txt *.cmake diff --git a/pyproject.toml b/pyproject.toml index 2dd98c2..662c6a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" [project] name = "pylibbpf" -version = "0.0.3" +version = "0.0.4" description = "Python Bindings for Libbpf" authors = [ { name = "r41k0u", email = "pragyanshchaturvedi18@gmail.com" }, diff --git a/tests/test_basic.py b/tests/test_basic.py index 283ef6f..363b906 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -2,6 +2,6 @@ import pylibbpf as m def test_main(): - assert m.__version__ == "0.0.3" + assert m.__version__ == "0.0.4" prog = m.BpfProgram("tests/execve2.o") print(prog)