[Distutils] Ubuntu says Virtualenv, Pip and Setuptools untrusted

2013-07-27 Thread Erik Bernoth
Hi everybody, did you know that Ubuntu 13.10 (or maybe Debian?) declares those packages as untrusted and asks you twice, if you really want to install them? Is there anything that can be done about that? Best Erik ___ Distutils-SIG maillist -

Re: [Distutils] User Viewpoint: Packaging History, Confusion and User Advice

2013-04-25 Thread Erik Bernoth
Thanks everybody for your feedback! On Wed, Apr 24, 2013 at 5:31 PM, Nick Coghlan ncogh...@gmail.com wrote: That's not a bad summary, and http://www.scotttorborg.com/python-packaging/index.html looks like an excellent resource. I'm going to write him an email pointing him to this thread.

[Distutils] User Viewpoint: Packaging History, Confusion and User Advice

2013-04-24 Thread Erik Bernoth
Hi everybody, because there is no central place to look at and probably not all decisions can be found in written form (like the abandoning of the fellow ship list, when and why Tarek Ziadé decided to work on other things then distribute/distutils2 and so on) I thought about writing a short

[Distutils] Updating the setup.py Documentation

2013-02-13 Thread Erik Bernoth
Hi everybody, If I want to propose changes to the setup.py documentation (specifically about this page: http://docs.python.org/2/distutils/setupscript.html), do I have to follow the standard Python Dev process ( http://docs.python.org/devguide/)? Are there other things to consider? Cheers Erik

[Distutils] Telling distutils about requirements

2013-02-11 Thread Erik Bernoth
Hi everybody, I think I pretty much read all of the http://docs.python.org/2/distutils/and started to create a pypi repository for my project ( http://pypi.python.org/pypi/monk_tf). Now there are some things that are not so clear from the documentation, with the most important being requirement

Re: [Distutils] Telling distutils about requirements

2013-02-11 Thread Erik Bernoth
On Mon, Feb 11, 2013 at 8:07 PM, Daniel Holth dho...@gmail.com wrote: On Mon, Feb 11, 2013 at 1:10 PM, Erik Bernoth erik.bern...@gmail.comwrote: Hi everybody, I think I pretty much read all of the http://docs.python.org/2/distutils/and started to create a pypi repository for my project

Re: [Distutils] Telling distutils about requirements

2013-02-11 Thread Erik Bernoth
' That also happens if I add spaces between project name and comparator. On Mon, Feb 11, 2013 at 8:24 PM, Daniel Holth dho...@gmail.com wrote: This is a common mistake. The parenthesis are a Metadata 1.2+ thing. Omit them for distutils. On Mon, Feb 11, 2013 at 2:22 PM, Erik Bernoth erik.bern

Re: [Distutils] Telling distutils about requirements

2013-02-11 Thread Erik Bernoth
already without () ] Daniel On Mon, Feb 11, 2013 at 2:32 PM, Erik Bernoth erik.bern...@gmail.comwrote: I basically follow the tutorial in the distutils docs, which is a little unclear to me in some points. If I do as you say it looks like

Re: [Distutils] Telling distutils about requirements

2013-02-11 Thread Erik Bernoth
: Not really. Install_requires is a setup tools/distribute feature. On Feb 11, 2013 2:52 PM, Erik Bernoth erik.bern...@gmail.com wrote: Yes, now it works! Thanks a lot! Last but not least, could you point me in the correct direction to add a patch for the distutils documentation, explaining