Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit 7421490

Browse files
committed
Stop installing tests
Add a missing exclude to find_packages() in order to stop it from installing global-scope 'tests' package. Fixes #64
1 parent d4655d0 commit 7421490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
description='Sphinx extension for Read the Docs overrides',
1313
install_requires=['requests', 'Jinja2>=2.9'],
1414
package_dir={'': '.'},
15-
packages=find_packages('.'),
15+
packages=find_packages('.', exclude=['tests']),
1616
long_description=codecs.open("README.rst", "r", "utf-8").read(),
1717
# trying to add files...
1818
include_package_data=True,

0 commit comments

Comments
 (0)