Add Manifest.in and include license file in source distribution#71
Conversation
|
Is it really that necessary / useful to add a new file to the root with a single line in it? Python has a standard for license management, it's the license key in |
|
It is indeed a single file with a single line, but it serves a functional purpose in that it tells the packaging process to include the license file in the source distribution so that it's in the tarball on pypi. Specifying the license in the I submitted this PR since your package was recently packaged for conda-forge, and there we try to make sure that the license file is included in the source that we distribute to keep with the terms of the license. In the case of the MIT, it states:
|
Major (interface) changes (#60) -- big thanks @iburago!!: - Read from an abbreviations file only when invoked from command line - Rename and refactor the create_wordlist_filter() function Minor changes: - #63: Do not capitalize small words occurring within hyphenated word groups (thanks @iburago!) - #65: Always capitalize 'Mc'-prefixed small words in compound word groups (thanks @iburago!) - #67: Don't capitalize Mr, Ms, Mrs (thanks @GurraB!) - #71: Add Manifest.in and include license file in src dist (thanks @synapticarbors!)
It would be helpful to include the license file in the source distribution