Skip to content

Commit f442e69

Browse files
committed
Exclude tests from package
A global "tests" package was being installed by the wheel... Signed-off-by: Ben Firshman <ben@firshman.co.uk>
1 parent ffbd442 commit f442e69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def install_egg_scripts(self, dist):
121121
license="Apache License 2.0",
122122
python_requires='>=3.6.0',
123123
install_requires=["googleapis-common-protos[grpc]>=1.0.0"],
124-
packages=setuptools.find_packages(),
124+
packages=setuptools.find_packages(exclude=["tests"]),
125125
package_data={'replicate': ['bin/replicate-shared']},
126126
cmdclass={
127127
'bdist_wheel': bdist_wheel,

0 commit comments

Comments
 (0)