Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit 0df4081

Browse files
committed
Add support for namespace packages. Closes jaraco/skeleton#40.
1 parent 77fbe1d commit 0df4081

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.cfg

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,18 @@ classifiers =
1515
Programming Language :: Python :: 3 :: Only
1616

1717
[options]
18-
packages = find:
18+
packages = find_namespace:
1919
include_package_data = true
2020
python_requires = >=3.6
2121
install_requires =
2222
setup_requires = setuptools_scm[toml] >= 3.4.1
2323

24+
[options.packages.find]
25+
exclude =
26+
build*
27+
docs*
28+
tests*
29+
2430
[options.extras_require]
2531
testing =
2632
# upstream

0 commit comments

Comments
 (0)