python-packaging
python-packaging copied to clipboard
Tutorial on how to structure Python packages
The URL https://www.youtube.com/watch?v=ienp4J3pW7U now gives an error "Video unavailable. This video contains content from Believe Entertainment, who has blocked it on copyright grounds." You can find other instance of the...
As written the tutorial is incorrect.
https://github.com/storborg/python-packaging/blob/35daf9938a63f7deb4b25cb1c5c65578c73f28e4/testing.rst recommends > tests [..] should be placed in a submodule of funniest. so that they can be imported, but won't pollute the global namespace. There's a good case to...
https://github.com/storborg/python-packaging/blob/35daf9938a63f7deb4b25cb1c5c65578c73f28e4/testing.rst recommends ``` setup( ... test_suite='nose.collector', tests_require=['nose'], ) ... $ python setup.py test ``` If you actually try this, you'll get > WARNING: Testing via this command is deprecated and...
Is this guide outdated? Could you please say something about `wheel`? Even one sentence can be helpful.
PEP 508 compatible specification for Packages Not On PyPI
At the time of writing, [Python 2.7 is EOL in under 10 months](https://pythonclock.org/), but https://python-packaging.readthedocs.io/en/latest/ says: > At this time, this documentation focuses on Python 2.x only, and may not...
You might mention this option: pip install git+https://github.com/myaccount/mypackage or even pip install git+https://github.com/myaccount/mypackage@version where `version` can be either a branch, a tag or a commit
Hi, [This issue](https://github.com/pypa/setuptools/issues/941) (quite extensive) revolves around the lack of a `.pypirc` file and lack of clarity around the fact that it is needed. I found that the python-packaging docs...
Just some nits