We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Your setup in the python template probably wont work if the user doesnt have setuptools installed. which is actually common.
Something like this in setup.py would be good:
try: from setuptools import setup except ImportError: from ez_setup import use_setuptools use_setuptools()
I have a copy of ez_setup here: https://github.com/BeatsonLab-MicrobialGenomics/samplemod/blob/master/ez_setup.py
The text was updated successfully, but these errors were encountered:
@bjpop - this could be in the python README if it isn't already?
Sorry, something went wrong.
I think it is about the use of pkg_resources, which seems to come from setuptools.
A little bit of reading suggests that more reading is required. Python packaging seems to be a bit of a mess.
For what it's worth, I don't think that I've ever had an issue related to this with MultiQC (which uses setuptools).
setuptools
bjpop
No branches or pull requests
Your setup in the python template probably wont work if the user doesnt have setuptools installed. which is actually common.
Something like this in setup.py would be good:
I have a copy of ez_setup here: https://github.com/BeatsonLab-MicrobialGenomics/samplemod/blob/master/ez_setup.py
The text was updated successfully, but these errors were encountered: