This command used to work just fine for me. ::
python setup.py register
Now it doesn't. For example, ::
$ python3 setup.py register
/usr/lib/python3.3/distutils/dist.py:257: UserWarning: Unknown distribution option: 'install_requires'
warnings.warn(msg)
/usr/lib/python3.3/distutils/dist.py:257: UserWarning: Unknown distribution option: 'tests_require'
warnings.warn(msg)
running register
running check
Registering sheetmusic to http://pypi.python.org/pypi
Server response (401): Unauthorized
But I can submit just fine with the form at
https://pypi.python.org/pypi?%3Aaction=submit_form,
and the following works once I do that. ::
python setup.py sdist upload
The attached setup.py file is from this package
https://pypi.python.org/pypi/sheetmusic |