Blame 0001-Do-not-install-text-files-in-site-packages.patch

0e14550
From 4ecc54b341f8d448b122e5bd5ab50bd28d854af2 Mon Sep 17 00:00:00 2001
9382218
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
0e14550
Date: Tue, 31 Jan 2023 10:43:59 -0500
9382218
Subject: [PATCH] Do not install text files in site-packages
9382218
9382218
Fixes #33 by making *.md sdist-only, and letting poetry automatically
9382218
install LICENSE in the dist-info.
9382218
---
9382218
 pyproject.toml | 5 ++++-
9382218
 1 file changed, 4 insertions(+), 1 deletion(-)
9382218
9382218
diff --git a/pyproject.toml b/pyproject.toml
0e14550
index 109a8bf..d4782af 100644
9382218
--- a/pyproject.toml
9382218
+++ b/pyproject.toml
9382218
@@ -4,7 +4,10 @@ build = "build.py"
9382218
 description = "A fast asyncio MySQL driver"
9382218
 documentation = "https://github.com/long2ice/asyncmy"
9382218
 homepage = "https://github.com/long2ice/asyncmy"
0e14550
-include = ["CHANGELOG.md", "LICENSE", "README.md"]
9382218
+include = [
9382218
+    { path = "CHANGELOG.md", format = "sdist" },
9382218
+    { path = "README.md", format = "sdist" },
9382218
+]
9382218
 keywords = ["driver", "asyncio", "mysql"]
9382218
 license = "Apache-2.0"
9382218
 name = "asyncmy"
9382218
-- 
0e14550
2.39.1
9382218