Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ff8846c

Browse files
authored
docs and tests shouldnt be packaged and installed with the Twillio lib
without excluding the `tests` folder it gets installed with the library and might (will) cause name collisions for consumers
1 parent 7441999 commit ff8846c

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
@@ -36,7 +36,7 @@
3636
':python_version=="3.4"': ['pysocks'],
3737
':python_version=="3.5"': ['pysocks'],
3838
},
39-
packages = find_packages(),
39+
packages = find_packages(exclude=['docs', 'tests*']),
4040
include_package_data=True,
4141
classifiers = [
4242
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)