diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-08 14:14:14 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-08 14:14:14 -0500 |
| commit | fbc9bd6fdbce132b9b5136345b0f6b3a1f6debaf (patch) | |
| tree | 540be1342314c3e647f4ce687510ac47365cd5f8 | |
| parent | 95a9c474d30acc729b536f9ad88ead7efab62c5d (diff) | |
| download | python-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.rst | 1 | ||||
| -rw-r--r-- | setup.cfg | 3 |
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. @@ -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 = |
