Skip to content

Commit

Permalink
Exclude tests from package
Browse files Browse the repository at this point in the history
A global "tests" package was being installed by the wheel...

Signed-off-by: Ben Firshman <[email protected]>
  • Loading branch information
bfirsh committed Jan 12, 2021
1 parent ffbd442 commit f442e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def install_egg_scripts(self, dist):
license="Apache License 2.0",
python_requires='>=3.6.0',
install_requires=["googleapis-common-protos[grpc]>=1.0.0"],
packages=setuptools.find_packages(),
packages=setuptools.find_packages(exclude=["tests"]),
package_data={'replicate': ['bin/replicate-shared']},
cmdclass={
'bdist_wheel': bdist_wheel,
Expand Down

0 comments on commit f442e69

Please sign in to comment.