[Distutils] `setup.py register` can't create PyPI account.

2010-07-11 Thread Takayuki Shimizukawa
Hi.

I wasn't able to make an account in PyPI using `setup.py register`.

http://pypi.python.org/pypi?:action=register_form require 'I agree'
checkbox, but `distutils/command/register.py` doesn't seem to send
a 'agree' form key/value to the PyPI server.

This problem occurs in the major python versions (include 2.7).

This introduced for PyPI site by
https://svn.python.org/packages/trunk/pypi/webui.py rev-690.

regards.
--
Takayuki SHIMIZUKAWA
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig


Re: [Distutils] `setup.py register` can't create PyPI account.

2010-07-11 Thread Fred Drake
On Sun, Jul 11, 2010 at 4:47 AM, Takayuki Shimizukawa
shimizuk...@gmail.com wrote:
 I wasn't able to make an account in PyPI using `setup.py register`.

The name of the register command is a little confusing.  It's
purpose is *not* to allow you to register yourself with PyPI, but to
register package information with the site.

You need to use the web interface to create your account.  When using
setup.py register, you'll be asked to authenticate using the account
you created via the web.


  -Fred

-- 
Fred L. Drake, Jr.fdrake at gmail.com
A storm broke loose in my mind.  --Albert Einstein
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig


[Distutils] buildout dependencies trouble

2010-07-11 Thread John Griessen

I've been making a buildout.cfg for deploying web sites and hit some snags.

django-page-cms is a package I want, and getting it via buildout
found eggs for other apps, but needed source for django-page-cms.
From there, some requirements, (don't know where they are in the code),
pulled in packages django-haystack, django-messages, whoosh, django-mptt-2,
and coverage.

I think to build the source only absolutely requires django-mptt-2.

whoosh and coverage have had problems.  buildout found whoosh as
a zipped egg and left it zipped even though putting it in the common eggs
directory where all others are unzipped and a python path points to them
for use when code runs.  To get a complete build, I manually unzipped.
I'm not moving eggs and downloads to my server, so buildout on the
server needed the same treatment.

coverage was found OK from my local machine, but not from the server.
I'm not sure yet why.

I'll try using bin/buidout -D  (Debug errors.)  soon.

Any other suggestions?

John
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig