diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-02-19 20:30:10 +0000 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-03-05 14:54:35 +0000 |
commit | 54f61809ed9da2a1ab3d14f7a8f06c3d74ad799c (patch) | |
tree | 5bf6f5454db4d87222c392f4b3602dc3f3da11b7 /setuptools/tests/config/test_pyprojecttoml.py | |
parent | d3e62b109e0d6ec57dcf14207c7dd91610138666 (diff) | |
download | python-setuptools-git-54f61809ed9da2a1ab3d14f7a8f06c3d74ad799c.tar.gz |
Find namespaces by default when using config in 'pyproject.toml'
Diffstat (limited to 'setuptools/tests/config/test_pyprojecttoml.py')
-rw-r--r-- | setuptools/tests/config/test_pyprojecttoml.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/tests/config/test_pyprojecttoml.py b/setuptools/tests/config/test_pyprojecttoml.py index 2132197d..395824bf 100644 --- a/setuptools/tests/config/test_pyprojecttoml.py +++ b/setuptools/tests/config/test_pyprojecttoml.py @@ -43,7 +43,6 @@ platforms = ["any"] [tool.setuptools.packages.find] where = ["src"] -namespaces = true [tool.setuptools.cmdclass] sdist = "pkg.mod.CustomSdist" @@ -74,7 +73,7 @@ def test_read_configuration(tmp_path): files = [ "src/pkg/__init__.py", - "src/other/nested/__init__.py", + "src/other/nested/__init__.py", # ensure namespaces are discovered by default "files/file.txt" ] for file in files: |