Skip to content

Commit

Permalink
fix: use setuptools.find_namespace_packages (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Nov 30, 2023
1 parent 95003ee commit 30a6864
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import re
import os

from setuptools import find_packages, setup
from setuptools import find_namespace_packages, setup

PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__))

Expand All @@ -37,7 +37,7 @@
author="Google LLC",
author_email="[email protected]",
url="https://github.com/googleapis/proto-plus-python.git",
packages=find_packages(exclude=["docs", "tests"]),
packages=find_namespace_packages(exclude=["docs", "tests"]),
description="Beautiful, Pythonic protocol buffers.",
long_description=README,
platforms="Posix; MacOS X",
Expand Down

0 comments on commit 30a6864

Please sign in to comment.