8000 docs and tests shouldnt be packaged and installed with the Twillio lib · SBillion/twilio-python@ff8846c · GitHub
[go: up one dir, main page]

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

8000

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)
0