Skip to content

Commit 24bf1e4

Browse files
authored
Exclude scripts from wheels (#2170)
* Include scripts and tests for dist and exclude from wheels. * Newsfragment for #2170
1 parent c5151c6 commit 24bf1e4

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ include README.md
33

44
include eth/_utils/kzg_trusted_setup.txt
55

6+
recursive-include scripts *
67
recursive-include tests *
78
global-include *.pyi
89

newsfragments/2170.internal.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Exclude `scripts` when building the wheel.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
license="MIT",
8888
zip_safe=False,
8989
keywords="ethereum blockchain evm",
90-
packages=find_packages(exclude=["tests", "tests.*"]),
90+
packages=find_packages(exclude=["scripts", "tests", "tests.*"]),
9191
package_data={"eth": ["py.typed"]},
9292
classifiers=[
9393
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)