summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-01-08 14:14:14 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-01-08 14:14:14 -0500
commitfbc9bd6fdbce132b9b5136345b0f6b3a1f6debaf (patch)
tree540be1342314c3e647f4ce687510ac47365cd5f8
parent95a9c474d30acc729b536f9ad88ead7efab62c5d (diff)
downloadpython-setuptools-git-fbc9bd6fdbce132b9b5136345b0f6b3a1f6debaf.tar.gz
Disable inclusion of package data as it causes 'tests' to be included as data. Fixes #2505.
-rw-r--r--changelog.d/2505.misc.rst1
-rw-r--r--setup.cfg3
2 files changed, 3 insertions, 1 deletions
diff --git a/changelog.d/2505.misc.rst b/changelog.d/2505.misc.rst
new file mode 100644
index 00000000..11c642e7
--- /dev/null
+++ b/changelog.d/2505.misc.rst
@@ -0,0 +1 @@
+Disable inclusion of package data as it causes 'tests' to be included as data.
diff --git a/setup.cfg b/setup.cfg
index 4eb50183..02d99530 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -24,7 +24,8 @@ project_urls =
[options]
packages = find:
py_modules = easy_install
-include_package_data = true
+# disabled as it causes tests to be included #2505
+# include_package_data = true
python_requires = >=3.6
install_requires =