diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-01-11 17:02:47 +0000 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-01-11 17:02:47 +0000 |
commit | ee4d6f1d87868ea025bfe01e626c2e4079aee60b (patch) | |
tree | 3fce4ea59655cbbe0547dcd2a2312494be9a2979 | |
parent | 2be567abcd6c2b6e30055feed5313a6a6bb3b1fc (diff) | |
parent | 718afe0c108b552e917552103e360c39d5e2f0c3 (diff) | |
download | python-setuptools-git-ee4d6f1d87868ea025bfe01e626c2e4079aee60b.tar.gz |
Merge: Add htmlcov to FlatLayoutModuleFinder.DEFAULT_EXCLUDE (#3715)
-rw-r--r-- | changelog.d/3594.change.rst | 1 | ||||
-rw-r--r-- | setuptools/discovery.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/changelog.d/3594.change.rst b/changelog.d/3594.change.rst new file mode 100644 index 00000000..c0642d78 --- /dev/null +++ b/changelog.d/3594.change.rst @@ -0,0 +1 @@ +Added ``htmlcov`` to FlatLayoutModuleFinder.DEFAULT_EXCLUDE -- by :user:`demianbrecht` diff --git a/setuptools/discovery.py b/setuptools/discovery.py index 98fc2a7f..6244a185 100644 --- a/setuptools/discovery.py +++ b/setuptools/discovery.py @@ -273,6 +273,7 @@ class FlatLayoutModuleFinder(ModuleFinder): "benchmarks", "exercise", "exercises", + "htmlcov", # ---- Hidden files/Private modules ---- "[._]*", ) |