Skip to content

Commit

Permalink
Ignore submodules in test directory
Browse files Browse the repository at this point in the history
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
  • Loading branch information
davismr committed Aug 14, 2024
1 parent 9515dce commit 6b970f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def getRequires():
author='Elmer Thomas, Yamil Asusta',
author_email='[email protected]',
url='https://github.com/sendgrid/sendgrid-python/',
packages=find_packages(exclude=["temp*.py", "test"]),
packages=find_packages(exclude=["test", "test.*"]),
include_package_data=True,
license='MIT',
description='Twilio SendGrid library for Python',
Expand Down

0 comments on commit 6b970f6

Please sign in to comment.