-
Notifications
You must be signed in to change notification settings - Fork 133
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
Note any significant distinctions between distutils and setuptools #22
Comments
This works if your setup.py uses the setup function from setuptools, not distutils. Are the instructions clear on that point? |
Ah, thanks for the hint. Imho the instructions are not clear on that point (especially if you just look at adding non-code files page). |
Thanks for the heads up. I'll clarify this point and investigate the circumstances under which one might end up with |
Thanks for your help and time guys. |
I'm going to leave this ticket open until I have a chance to update that. |
That is, of course, your prerogative. |
So if you want to mention any significant distinction, then let me mention also that: /usr/local/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'install_requires' |
Good to know, thanks. I'm actually leaning towards advising "don't use distutils at all, here's how to use setuptools..." |
Well after having that warnings I tend to agree with you. But be sure to mention it on every side, since when you search stuff you don't always start reading at the frontpage. |
Aloha,
"you’ll need to supply include_package_data=True to the setup() function."
/usr/local/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'include_package_data'
warnings.warn(msg)
It seems that (at least with python3) this option is no longer available.
The text was updated successfully, but these errors were encountered: