Skip to content

Commit

Permalink
Use find_packages to get all submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
psarka committed Apr 5, 2022
1 parent 1ed76bb commit 28e5cba
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 @@ -3,7 +3,7 @@
"""The setup script."""

from collections import defaultdict
from setuptools import setup
from setuptools import setup, find_packages
from itertools import chain
from pathlib import Path

Expand Down Expand Up @@ -53,7 +53,7 @@ def load_requirements(path: Path):
long_description_content_type="text/markdown",
include_package_data=True,
name="cloudpathlib",
packages=["cloudpathlib"],
packages=find_packages(exclude=["tests"]),
project_urls={
"Bug Tracker": "https://github.com/drivendataorg/cloudpathlib/issues",
"Documentation": "https://cloudpathlib.drivendata.org/",
Expand Down

0 comments on commit 28e5cba

Please sign in to comment.