From f29c8ad8f0a408ed909bf494bb1538f4c69efa8e Mon Sep 17 00:00:00 2001 From: Stuart Reed Date: Wed, 17 Apr 2024 10:50:30 -0600 Subject: [PATCH] `scripts` directory included in dist but not in wheel. (#130) --- MANIFEST.in | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index a122460c..0584923e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,7 @@ include LICENSE include README.md +recursive-include scripts * recursive-include tests * global-include *.pyi diff --git a/setup.py b/setup.py index 484f113b..4fbeceb5 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ setup( license="MIT", zip_safe=False, keywords="ethereum", - packages=find_packages(exclude=["tests", "tests.*"]), + packages=find_packages(exclude=["scripts", "tests", "tests.*"]), package_data={"": ["py.typed"]}, classifiers=[ "Development Status :: 3 - Alpha",