python-packaging
python-packaging copied to clipboard
Tutorial on how to structure Python packages
No mention to `python setup.py develop` before in the docs.
In setup.py: https://github.com/storborg/python-packaging/blob/master/funniest/setup.py the url (line 20) is listed as follows: url='http://github.com/storborg/funniest', This repo does not exist, I believe it ought to be: url='http://github.com/storborg/python-packaging',
`python3 setup.py register` is deprecated and as per the official guide is not recommended due to security issues. Similar issues with `python2 setup.py upload` The recommended way is to use...
the current instructions are deprecated/not recommended so updated to latest documentation as mentioned in https://packaging.python.org/distributing/#uploading-your-project-to-pypi
I added 1 sentence to the "Note" on this page: > Storing this file within the module directory would require updating the `include` in the above example to be `include...
thanks!
The joke.py file appears to be missing from the funniest package (at the same directory level as command_line.py) - the package outline in this doc should be updated as well:...
PyPA recommends using Twine to install. Registration with ``python setup.py register`` is deprecated and doesn't seem to work.
hi storborg, perhaps you should include a section on how to include submodules and ensure that they work ie either specify the submodules specifically by name on the packages section...
Security issue