Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change case of package name on PyPI

I recently uploaded a package to PyPI under a name with mixed-case letters, QualysAPI. In retrospect I think it'd be better to have the package name be all lowercase per PEP 8. Is there a way I can change it?

Here's what happens when I try manually edit the package name on Pypi:

Forbidden

Package name conflicts with existing package 'QualysAPI'

Here's what happens when I try to edit the package name via python setup.py sdist upload:

Upload failed (403): You are not allowed to edit 'qualysapi' package information

like image 724
paragbaxi Avatar asked Jul 04 '13 01:07

paragbaxi


1 Answers

Deleted package. Reupload package with all lowercase. Lost all history of package but doesn't matter since Github has revisions online.

like image 179
paragbaxi Avatar answered Oct 11 '22 01:10

paragbaxi