Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c300ff6

Browse files
committedDec 22, 2023
Ignore submodules in test directory
so they are not installed under test folder in python site-packages Also remove the temp*.py exclusion as this does not seem to have any purpose
1 parent 4e4ac47 commit c300ff6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def getRequires():
2424
author='Elmer Thomas, Yamil Asusta',
2525
author_email='help@twilio.com',
2626
url='https://github.com/sendgrid/sendgrid-python/',
27-
packages=find_packages(exclude=["temp*.py", "test"]),
27+
packages=find_packages(exclude=["test", "test.*"]),
2828
include_package_data=True,
2929
license='MIT',
3030
description='Twilio SendGrid library for Python',

0 commit comments

Comments
 (0)
Please sign in to comment.