Skip to content

Commit

Permalink
fix: correct find_packages wildcard behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
bclavie committed Mar 19, 2024
1 parent 608f7c2 commit 900de59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def run(self):
author="Dr. Hicham Badri",
author_email="[email protected]",
license="Apache 2",
packages=find_packages(include=["hqq", "hqq/*"]),
packages=find_packages(include=["hqq", "hqq.*"]),
cmdclass={
"install": InstallCommand,
"develop": DevelopCommand,
Expand Down

0 comments on commit 900de59

Please sign in to comment.