Skip to content

Commit

Permalink
Use find_packages() to find all python packages
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Nov 30, 2023
1 parent f44249a commit 48926b3
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 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Setuptools-based packaging and installation configuration."""

from setuptools import setup
from setuptools import find_packages, setup

import versioneer

Expand Down Expand Up @@ -45,7 +45,7 @@
long_description=long_description,
author="Esben S. Nielsen",
author_email="[email protected]",
packages=["pycoast", "pycoast.tests"],
packages=find_packages(),
include_package_data=True,
install_requires=requires,
extras_require=extras_require,
Expand Down

0 comments on commit 48926b3

Please sign in to comment.