summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-01-28 20:05:14 -0500
committerJason R. Coombs <jaraco@jaraco.com>2022-01-29 21:18:18 -0500
commit13c8c7d27e3dc730ef2fe81c22a6b7202212739d (patch)
tree3415eefc4350dfc27cf8f4cb1fb9db3c90f359b6 /setup.py
parentb4f1bf1cb8b3285d0620b27f316d7e83470f7d68 (diff)
downloadpython-setuptools-git-13c8c7d27e3dc730ef2fe81c22a6b7202212739d.tar.gz
Ensure text file from vendored package is included.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 4cda3d38..0b85f8e7 100755
--- a/setup.py
+++ b/setup.py
@@ -13,6 +13,7 @@ here = os.path.dirname(__file__)
package_data = dict(
setuptools=['script (dev).tmpl', 'script.tmpl', 'site-patch.py'],
)
+package_data.update({'pkg_resources._vendor.jaraco.text': ['*.txt']})
force_windows_specific_files = (
os.environ.get("SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES", "1").lower()