Skip to content

Commit

Permalink
Merge pull request #25 from AnswerDotAI/chore/setup_improvement
Browse files Browse the repository at this point in the history
fix: correct find_packages wildcard behaviour
mobicham authored Mar 19, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents df43514 + 900de59 commit 2d276ae
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
@@ -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,

0 comments on commit 2d276ae

Please sign in to comment.