We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f46863e commit b000391Copy full SHA for b000391
MANIFEST.in
@@ -6,6 +6,5 @@ include setup.py
6
include elastic_transport/py.typed
7
8
prune docs/_build
9
-prune tests
10
recursive-exclude * __pycache__
11
recursive-exclude * *.py[co]
setup.py
@@ -28,7 +28,9 @@
28
long_description = f.read()
29
30
packages = [
31
- package for package in find_packages() if package.startswith("elastic_transport")
+ package
32
+ for package in find_packages(exclude=["tests"])
33
+ if package.startswith("elastic_transport")
34
]
35
36
setup(
0 commit comments