From 0ac28e9eea1b8d9880b88f8865fb0536d180946d Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Wed, 6 Aug 2025 15:33:35 +0800 Subject: [PATCH] fix: include doc/ and examples/ in sdist --- MANIFEST.in | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..4fceca0 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +graft doc/ +graft examples/ \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 299ac40..61ed379 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,4 +44,4 @@ build-backend = "setuptools.build_meta" [tool.setuptools] ext-modules = [ { name = "alsaaudio", sources = ["src/alsaaudio.c"], libraries = ["asound"] } -] \ No newline at end of file +]