Skip to content

Commit

Permalink
Correctly searching for subpackages only in the intended folder. (#614)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Diamant <michaeldiamant@users.noreply.github.com>
  • Loading branch information
CiottiGiorgio and michaeldiamant committed Dec 13, 2022
1 parent a240ec0 commit 12c1e5e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/algorand/pyteal",
packages=["pyteal"],
packages=setuptools.find_packages(
include=(
"pyteal",
"pyteal.*",
)
),
install_requires=[
# when changing this list, also update docs/requirements.txt
"py-algorand-sdk>=1.9.0,<2.0.0",
Expand Down

0 comments on commit 12c1e5e

Please sign in to comment.