how to register with pypi - no such setup.py
Martin v. Loewis
martin at v.loewis.de
Thu Dec 24 06:32:26 EST 2009
> Any tips?
A binary distribution won't have a setup.py, because
you can install it by other means (such as Windows Installer),
instead of running setup.py
What you want is a source distribution (sdist).
Even if you want to create a binary distribution, don't use the
bdist command, but some specialization, such as bdist_rpm.
Regards,
Martin
More information about the Python-list
mailing list