-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixing setup.py for pip install #16
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #16 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 7 7
Lines 137 137
=========================================
Hits 137 137 ☔ View full report in Codecov by Sentry. |
Kudos, SonarCloud Quality Gate passed! |
Any updates? |
@@ -19,7 +19,7 @@ | |||
long_description_content_type="text/markdown", | |||
include_package_data=True, | |||
url="https://github.com/Aura-healthcare/ecg_qc", | |||
packages=setuptools.find_packages("ecg_qc/*", exclude=["tests"]), | |||
packages=['ecg_qc'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reopening this after a long time ... Thank you adgilbert for your PR!
Just one comment :
packages=setuptools.find_packages(exclude=["tests"]) would fix and keep the test exclusion.
Small setup.py fix.
The current version of setup.py will look inside of the ecg_qc for modules whereas we actually want it to install ecg_qc as a module.
Thanks for the nice repo!