diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-11-14 19:08:26 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-11-14 19:08:26 -0500 |
commit | 3ac1982b6099e1c729d0840a360bf0f37721f0d1 (patch) | |
tree | 0669387b3ace4a2d076798032c5c7d84f2657889 | |
parent | c5a4c42d38cd0ba5ecd34977e211ae4b6865afec (diff) | |
download | python-setuptools-git-feature/vendoring.tar.gz |
Add vendoring config.feature/vendoring
-rw-r--r-- | pyproject.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 03c40125..19cd2add 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,3 +57,10 @@ addopts = "-n auto" directory = "misc" name = "Misc" showcontent = true + +[tool.vendoring] +destination = "setuptools/_vendor/" +requirements = "setuptools/_vendor/vendored.txt" +namespace = "setuptools._vendor" + +protected-files = ["__init__.py", "README.rst", "vendored.txt"] |