-
-
Notifications
You must be signed in to change notification settings - Fork 34
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
Doc/license files installed directly in site-packages #33
Comments
What's the trouble? |
The top-level This is relatively harmless when pip-installing into a virtualenv, as any packages that do this will just keep overwriting each other’s files. Still, files that are distribu ted and then overwritten aren’t doing any good. For Linux distribution packaging, it’s necessary for the packager to work around this behavior to avoid conflicts in the system site-packages. For these reasons, normally it would make sense to let Poetry automatically include the include = [
{ path = "CHANGELOG.md", format = "sdist" },
{ path = "README.md", format = "sdist" },
] You certainly don’t have to change it if you don’t want to, though. |
Fixes long2ice#33 by making *.md sdist-only, and letting poetry automatically install LICENSE in the dist-info.
Would you consider a PR for this? |
The
asyncmy
package installs itsCHANGELOG.md
,LICENSE
, andREADME.md
directly intosite-packages
.The text was updated successfully, but these errors were encountered: