[00:14:08] <tjnycum> ionelmc: i'm inexperienced with making python packages, but I was hoping to modify https://github.com/ixmatus/inflector/blob/master/setup.py to resolve https://github.com/ixmatus/inflector/issues/4
[00:15:47] <ionelmc> tjnycum: just remove https://github.com/ixmatus/inflector/blob/master/setup.py#L23-L25
[00:16:01] <ionelmc> there's no need for that from what i see
[00:18:57] <tjnycum> yeah, the reason I haven't simply done that is that I don't know whether the ixmatus would balk at removing the license from the installed package. so if there were an easy way to just put those files inside the inflector directory instead, I thought that would be preferable
[00:21:20] <tjnycum> if there is no easy fix, i can certainly suggest that, though
[00:21:58] <ionelmc> tjnycum: the license is already there in dist-info or egg-info
[00:25:02] <tjnycum> through METADATA's reference to "Classifier: License :: OSI Approved :: Python Software Foundation License" you mean?
[00:25:52] <tjnycum> the contents of the readme do appear to be the description
[13:31:20] <pjdelport> muelli: Actually, I think you can just leave out the --user. pip uninstall will treat the user-local installation as part of the system package view, and will uninstall the package it finds there.
[13:31:51] <pjdelport> So you can think of pip uninstall as implicitly having --user.
[16:44:26] <skwishy> hey, can someone point me to the docs that explains what "all" in something like "pip install whatever[all]" does?
[16:48:07] <xafer> hello, it's called extras, cf https://pythonhosted.org/setuptools/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies
[16:49:26] <skwishy> xafer: thank you, that helps!
[16:50:34] <skwishy> is there a good way to inspect these extras in a package, before installing it?
[16:51:07] <skwishy> or, even after installing something?
[20:37:37] <aconrad> hi, I have a question with regards to warehouse vs. devpi; I'm actually not very familiar with either of these and I'm wondering whether there are strong arguments over picking one over the other for hosting a private python package repo (cross-posted to #devpi to get both points of views)
[20:47:31] <dstufft> aconrad: you almost certainly want devpi unless you're pypi.python.org
[20:48:11] <dstufft> while I don't go out of my way to make Warehouse unsuitable for use elsewhere, I also don't make any attempts to make it useful for deployment anywhere but as PyPI.
[21:22:03] <aconrad> dstufft: ok thanks for the info