Skip to content

Commit e84463b

Browse files
committed
Find namespace packages.
1 parent fca102c commit e84463b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""See README.md for package documentation."""
22

3-
from setuptools import setup, find_packages
3+
from setuptools import setup, find_namespace_packages
44

55
from io import open
66
from os import path
@@ -40,7 +40,7 @@
4040
],
4141
keywords='Kivy kivy-garden',
4242

43-
packages=find_packages(),
43+
packages=find_namespace_packages(include=['kivy_garden.*']),
4444
install_requires=[],
4545
extras_require={
4646
'dev': ['pytest>=3.6', 'pytest-cov', 'pytest-asyncio',

0 commit comments

Comments
 (0)